Overview
Simple API for exchanging LDExBEM payloads. The API describes transmission of an LDExBEM payload in two parts: 1) Metadata describing the payload (unique ID, sender, receiver, payload type, and spec version) and 2) payload in the LDExBEM format (JSON or XML)
Authentication
Each customer account has a unique pair of API credentials. Contact support to receive an CLIENT_ID, CLIENT_SECRET pair as part the initial onboarding.
Getting a Token In order to make API calls to PDX API you just generate a temporary access token (valid for 10 minutes) by calling https://accounts.pdx.com/auth/public/token using your CLIENT_ID and CLIENT_SECRET as the username/password combination in a Basic Authentication header.
Calling the API
After generating the token using the instructions above, include the ACCESS_TOKEN in the Authorization header for each request: Authorization: Bearer 
Version
version 1.0
Member Management API
# post /bem/...
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
/bem Schema
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"title": "LDExBEM",
"description": "1.3.2022.12.31",
"anyOf": [
{
"type": "object",
"properties": {
"transmission": {"$ref": "#/$defs/Transmission"}
}
}
],
"$defs": {
"Carrier": {
"type": "object",
"required": [
"carrierID",
"carrierName"
],
"properties": {
"carrierID": {"type": "string"},
"carrierName": {"type": "string"}
}
},
"CarrierMasterAgreementNumber": {
"type": "object",
"required": [
"carrierMasterAgreementNumberID",
"masterAgreementNumber",
"carrierID"
],
"properties": {
"carrierMasterAgreementNumberID": {"type": "string"},
"masterAgreementNumber": {"type": "string"},
"carrierID": {"type": "string"}
}
},
"PostalAddress": {
"type": "object",
"required": [
"firstLineAddress",
"cityName",
"postalCode"
],
"properties": {
"firstLineAddress": {"type": "string"},
"secondLineAddress": {"type": "string"},
"thirdLineAddress": {"type": "string"},
"cityName": {"type": "string"},
"stateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"postalCode": {"type": "string"},
"countryCode": {"$ref": "#/$defs/Country"}
}
},
"StructuredPersonName": {
"type": "object",
"properties": {
"prefixCode": {"$ref": "#/$defs/Prefix"},
"firstName": {"type": "string"},
"middleName": {"type": "string"},
"lastName": {"type": "string"},
"suffixCode": {"$ref": "#/$defs/Suffix"}
}
},
"EmploymentIncome": {
"type": "object",
"properties": {
"incomeTypeCode": {"$ref": "#/$defs/IncomeType"},
"incomeAmount": {"type": "number"},
"incomeModeCode": {
"type": "string",
"enum": [
"Hourly",
"Annual",
"Monthly12PerYear",
"BiWeekly26PerYear",
"SemiMonthly24PerYear",
"SemiMonthly21PerYear",
"Weekly52PerYear",
"Weekly48PerYear",
"Quarterly",
"SemiAnnual",
"9thly",
"10thly"
]
},
"incomeEffectiveDate": {
"type": "string",
"format": "date"
}
}
},
"EmploymentInformationUserDefinedCategory": {
"type": "object",
"required": ["categoryName"],
"properties": {
"categoryName": {"type": "string"},
"categoryValueString": {"type": "string"},
"categoryTypeCode": {"$ref": "#/$defs/CategoryType"}
}
},
"EmploymentContact": {
"type": "object",
"required": [
"contactTypeCode",
"contactName"
],
"properties": {
"contactTypeCode": {"$ref": "#/$defs/ContactType"},
"contactName": {"$ref": "#/$defs/StructuredPersonName"},
"contactSocialSecurityNumber": {"type": "string"},
"contactIdentifier": {"type": "string"},
"contactEmail": {"type": "string"},
"contactOrganizationName": {"type": "string"},
"contactPhone": {"type": "string"}
}
},
"WorkSchedule": {
"type": "object",
"required": ["workScheduleTypeCode"],
"properties": {
"workShiftCode": {"$ref": "#/$defs/WorkShift"},
"workScheduleTypeCode": {"$ref": "#/$defs/WorkScheduleType"},
"weeklyWorkedHoursQuantity": {"type": "number"},
"sundayWorkedHoursQuantity": {"type": "number"},
"mondayWorkedHoursQuantity": {"type": "number"},
"tuesdayWorkedHoursQuantity": {"type": "number"},
"wednesdayWorkedHoursQuantity": {"type": "number"},
"thursdayWorkedHoursQuantity": {"type": "number"},
"fridayWorkedHoursQuantity": {"type": "number"},
"saturdayWorkedHoursQuantity": {"type": "number"}
}
},
"EmploymentSchedule": {
"type": "object",
"properties": {
"scheduledHoursQuantity": {"type": "number"},
"scheduledHoursFrequencyCode": {"$ref": "#/$defs/WorkHoursFrequency"},
"last12MonthsWorkHoursQuantity": {"type": "number"},
"perWeekWorkedHoursQuantity": {"type": "number"},
"workSchedule": {
"type": "array",
"items": {"$ref": "#/$defs/WorkSchedule"},
"minItems": 0
}
}
},
"EmploymentInformation": {
"type": "object",
"required": [
"originalHireDate",
"employmentTypeCode",
"employmentStatusCode"
],
"properties": {
"originalHireDate": {
"type": "string",
"format": "date"
},
"mostRecentHireDate": {
"type": "string",
"format": "date"
},
"adjustedServiceDate": {
"type": "string",
"format": "date"
},
"exemptCode": {"$ref": "#/$defs/Exempt"},
"employmentTypeCode": {"$ref": "#/$defs/EmploymentType"},
"employmentStatusCode": {"$ref": "#/$defs/EmploymentStatus"},
"terminationDate": {
"type": "string",
"format": "date"
},
"terminationReasonCode": {"$ref": "#/$defs/TerminationReason"},
"jobTitleText": {"type": "string"},
"occupationText": {"type": "string"},
"workHoursQuantity": {"type": "number"},
"workHoursFrequencyCode": {"$ref": "#/$defs/WorkHoursFrequency"},
"workLocationText": {"type": "string"},
"payrollDeductionFrequencyQuantity": {"type": "integer"},
"payrollFrequencyQuantity": {"type": "integer"},
"supervisorFullName": {"type": "string"},
"supervisorEmailAddress": {"type": "string"},
"humanResourcePartnerEmailAddress": {"type": "string"},
"unionIndicator": {"type": "boolean"},
"unionLocalName": {"type": "string"},
"unionLocalNumber": {"type": "string"},
"unionMemberNumber": {"type": "string"},
"employmentIncome": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentIncome"},
"minItems": 0
},
"employmentInformationUserDefinedCategory": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentInformationUserDefinedCategory"},
"minItems": 0
},
"rule5075Indicator": {"type": "boolean"},
"workStateCode": {"$ref": "#/$defs/StateProvince"},
"keyEmployeeIndicator": {"type": "boolean"},
"employmentContact": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentContact"},
"minItems": 0
},
"employmentSchedule": {"$ref": "#/$defs/EmploymentSchedule"}
}
},
"EnrollmentInformation": {
"type": "object",
"required": ["enrollmentInformationID"],
"properties": {
"enrollmentInformationID": {"type": "string"},
"enrollmentMethodCode": {"$ref": "#/$defs/EnrollmentMethod"},
"employeeEnrollmentLocationAddress": {"$ref": "#/$defs/PostalAddress"},
"enrollmentCityName": {"type": "string"},
"enrollmentStateProvinceCode": {"$ref": "#/$defs/StateProvince"}
}
},
"Event": {
"type": "object",
"required": [
"eventID",
"eventTypeCode",
"eventTypeReasonCode",
"eventDate"
],
"properties": {
"eventID": {"type": "string"},
"eventTypeCode": {"$ref": "#/$defs/EventType"},
"eventTypeReasonCode": {"$ref": "#/$defs/EventTypeReason"},
"eventDate": {
"type": "string",
"format": "date"
},
"transactionDate": {
"type": "string",
"format": "date"
},
"enrollmentInformationID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"Dependent": {
"type": "object",
"required": [
"dependentPartyID",
"dependentRelationshipTypeCode",
"dependentBirthDate"
],
"properties": {
"dependentPartyID": {"type": "string"},
"dependentIndividualTaxpayerIdentificationNumber": {"type": "string"},
"dependentSocialSecurityNumber": {"type": "string"},
"dependentIdentifier": {"type": "string"},
"dependentName": {"$ref": "#/$defs/StructuredPersonName"},
"dependentRelationshipTypeCode": {"$ref": "#/$defs/DependentRelationshipType"},
"dependentGenderCode": {"$ref": "#/$defs/Gender"},
"dependentBirthDate": {
"type": "string",
"format": "date"
},
"dependentHomePhone": {"type": "string"},
"dependentWorkPhone": {"type": "string"},
"dependentMobilePhone": {"type": "string"},
"dependentMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"dependentHomeEmail": {"type": "string"},
"disabilityIndicator": {"type": "boolean"},
"studentStatusCode": {"$ref": "#/$defs/StudentStatus"},
"dependentTobaccoUseCode": {"$ref": "#/$defs/TobaccoUse"},
"dependentEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"OtherParty": {
"type": "object",
"required": [
"otherPartyID",
"otherPartyRelationshipTypeCode",
"otherPartyTypeCode"
],
"properties": {
"otherPartyID": {"type": "string"},
"otherPartyIndividualTaxpayerIdentificationNumber": {"type": "string"},
"otherPartyFederalEmployerIdentificationNumber": {"type": "string"},
"otherPartySocialSecurityNumber": {"type": "string"},
"otherPartyOrganizationName": {"type": "string"},
"otherPartyPersonName": {"$ref": "#/$defs/StructuredPersonName"},
"otherPartyRelationshipTypeCode": {"$ref": "#/$defs/BeneficiaryRelationshipType"},
"otherPartyTypeCode": {"$ref": "#/$defs/PartyType"},
"otherPartyGenderCode": {"$ref": "#/$defs/Gender"},
"otherPartyBirthDate": {
"type": "string",
"format": "date"
},
"otherPartyHomePhone": {"type": "string"},
"otherPartyWorkPhone": {"type": "string"},
"otherPartyMobilePhone": {"type": "string"},
"otherPartyMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"otherPartyHomeAddress": {"$ref": "#/$defs/PostalAddress"},
"otherPartyHomeEmail": {"type": "string"},
"otherPartyWorkEmail": {"type": "string"},
"otherPartyEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"Beneficiary": {
"type": "object",
"required": [
"beneficiaryPartyID",
"beneficiaryPartyTypeCode",
"beneficiaryPercent",
"beneficiaryTypeCode"
],
"properties": {
"beneficiaryPartyID": {"type": "string"},
"beneficiaryPartyTypeCode": {"$ref": "#/$defs/BeneficiaryPartyType"},
"beneficiaryPercent": {"type": "number"},
"beneficiaryTypeCode": {"$ref": "#/$defs/BeneficiaryType"}
}
},
"BeneficiaryGroup": {
"type": "object",
"required": [
"beneficiaryGroupID",
"beneficiary"
],
"properties": {
"beneficiaryGroupID": {"type": "string"},
"beneficiary": {
"type": "array",
"items": {"$ref": "#/$defs/Beneficiary"},
"minItems": 1
}
}
},
"CarrierProducerNumber": {
"type": "object",
"required": [
"carrierProducerNumberID",
"carrierID",
"carrierProducerNumber"
],
"properties": {
"carrierProducerNumberID": {"type": "string"},
"carrierID": {"type": "string"},
"carrierProducerNumber": {"type": "string"}
}
},
"ProducerLicense": {
"type": "object",
"required": [
"producerLicenseID",
"producerLicenseTypeCode",
"producerLicenseStateProvinceCode",
"producerLicenseNumber"
],
"properties": {
"producerLicenseID": {"type": "string"},
"producerLicenseTypeCode": {"$ref": "#/$defs/ProducerLicenseType"},
"producerLicenseStateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"producerLicenseNumber": {"type": "string"}
}
},
"Producer": {
"type": "object",
"required": ["producerPartyID"],
"properties": {
"producerPartyID": {"type": "string"},
"producerFirstName": {"type": "string"},
"producerLastName": {"type": "string"},
"carrierProducerNumber": {
"type": "array",
"items": {"$ref": "#/$defs/CarrierProducerNumber"},
"minItems": 0
},
"producerLicense": {
"type": "array",
"items": {"$ref": "#/$defs/ProducerLicense"},
"minItems": 0
}
}
},
"Provider": {
"type": "object",
"properties": {
"providerIdentificationNumberText": {"type": "string"},
"providerName": {"type": "string"},
"existingPatientIndicator": {"type": "boolean"}
}
},
"CoverageInsured": {
"type": "object",
"required": [
"insuredPartyID",
"primaryInsuredIndicator",
"insuredCoverageEffectiveDate"
],
"properties": {
"insuredPartyID": {"type": "string"},
"primaryInsuredIndicator": {"type": "boolean"},
"tobaccoUseIndicator": {"type": "boolean"},
"insuredCoverageEffectiveDate": {
"type": "string",
"format": "date"
},
"insuredCoverageTerminationDate": {
"type": "string",
"format": "date"
},
"provider": {"$ref": "#/$defs/Provider"}
}
},
"CoverageRider": {
"type": "object",
"required": [
"coverageRiderID",
"riderIdentifier"
],
"properties": {
"coverageRiderID": {"type": "string"},
"riderIdentifier": {"type": "string"},
"riderName": {"type": "string"},
"coverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"benefitAmount": {"type": "number"},
"riderUnitQuantity": {"type": "number"},
"riderOptionIdentifier": {"type": "string"},
"preTaxCode": {"$ref": "#/$defs/PreTax"},
"employeePremiumContributionAmount": {"type": "number"},
"employerPremiumContributionAmount": {"type": "number"},
"riderEffectiveDate": {
"type": "string",
"format": "date"
},
"riderTerminationDate": {
"type": "string",
"format": "date"
}
}
},
"ElectedCoverage": {
"type": "object",
"properties": {
"electedCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"electedBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"electedBenefitAmount": {"type": "number"},
"electedBenefitFactor": {"type": "number"},
"electedEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"electedEmployeePremiumContributionAmount": {"type": "number"},
"electedEmployerPremiumContributionAmount": {"type": "number"},
"electedTotalPlanPremiumAmount": {"type": "number"},
"electedCoverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 0
},
"electedCoverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
}
}
},
"CoverageQuestionAnswer": {
"type": "object",
"required": [
"coverageQuestionAnswerID",
"questionIdentifier",
"answerPartyID"
],
"properties": {
"coverageQuestionAnswerID": {"type": "string"},
"questionIdentifier": {"type": "string"},
"answerIndicator": {"type": "boolean"},
"answerText": {"type": "string"},
"answerPartyID": {"type": "string"}
}
},
"CoverageDeduction": {
"type": "object",
"properties": {
"deductionTypeCode": {
"type": "string",
"enum": [
"Medical",
"401(k)",
"StateIncomeTax",
"PAUnemploymentTax",
"LocalityTax",
"Dental",
"Life",
"PensionContribution1",
"PensionContribution2",
"StateIncomeTax2",
"StateIncomeTax3",
"FreeForm1",
"FreeForm2",
"FreeForm3",
"FreeForm4",
"FreeForm5",
"SupplementalLife",
"LegalServices",
"Health",
"Hospitalization",
"Disability",
"FreeForm",
"AccidentalDeath&Dismemberment",
"Vision",
"RemimbursementHealthcareExpenses",
"DependentCareAssistance",
"AdoptiveAssistance",
"Multiple401K",
"PensionContribution",
"NJUmeploymentTax",
"AKUnemploymentTax",
"StateLeaveContribution",
"UnemploymentTax"
]
},
"deductionAmount": {"type": "number"},
"deductionFrequencyQuantity": {"type": "integer"},
"deductionTypeFreeFormValueString": {"type": "string"},
"deductionTypeStateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"deductionTypePreTaxCode": {"$ref": "#/$defs/PreTax"}
}
},
"CoverageCompensationSplit": {
"type": "object",
"required": [
"carrierProducerNumberID",
"compensationSplitPercent"
],
"properties": {
"carrierProducerNumberID": {"type": "string"},
"compensationSplitPercent": {"type": "number"}
}
},
"CoverageChange": {
"type": "object",
"properties": {
"changeCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"changeBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"changeBenefitAmount": {"type": "number"},
"changeBenefitFactor": {"type": "number"},
"changeEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"changeEmployeePremiumContributionAmount": {"type": "number"},
"changeEmployerPremiumContributionAmount": {"type": "number"},
"changeTotalPlanPremiumAmount": {"type": "number"},
"priorCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"priorBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"priorBenefitAmount": {"type": "number"},
"priorBenefitFactor": {"type": "number"},
"priorEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"priorEmployeePremiumContributionAmount": {"type": "number"},
"priorEmployerPremiumContributionAmount": {"type": "number"},
"priorTotalPlanPremiumAmount": {"type": "number"},
"priorCoverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 0
},
"priorCoverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
}
}
},
"CoverageContribution": {
"type": "object",
"properties": {
"contributionLimitTypeCode": {"$ref": "#/$defs/ContributionLimitType"},
"planYearEmployeeContributionAmount": {"type": "number"},
"planYearEmployerContributionAmount": {"type": "number"},
"toDateEmployeeContributionAmount": {"type": "number"},
"toDateEmployerContributionAmount": {"type": "number"},
"contributionsRemainingQuantity": {"type": "integer"}
}
},
"Coverage": {
"type": "object",
"required": [
"coverageID",
"coverageEffectiveDate",
"carrierID",
"coverageInsured"
],
"properties": {
"coverageID": {"type": "string"},
"groupPolicyNumber": {"type": "string"},
"individualPolicyNumber": {"type": "string"},
"productTypeCode": {"$ref": "#/$defs/ProductType"},
"benefitPlanIdentifier": {"type": "string"},
"benefitClassIdentifier": {"type": "string"},
"benefitSubClassIdentifier": {"type": "string"},
"billGroupIdentifier": {"type": "string"},
"billSubGroupIdentifier": {"type": "string"},
"claimGroupIdentifier": {"type": "string"},
"claimSubGroupIdentifier": {"type": "string"},
"originalCoverageEffectiveDate": {
"type": "string",
"format": "date"
},
"coverageEffectiveDate": {
"type": "string",
"format": "date"
},
"coverageTerminationDate": {
"type": "string",
"format": "date"
},
"coverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"benefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"benefitAmount": {"type": "number"},
"benefitFactor": {"type": "number"},
"employeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"employeePremiumContributionAmount": {"type": "number"},
"employerPremiumContributionAmount": {"type": "number"},
"totalPlanPremiumAmount": {"type": "number"},
"benefitEarningsAmount": {"type": "number"},
"benefitEarningsEffectiveDate": {
"type": "string",
"format": "date"
},
"benefitModeQuantity": {"type": "integer"},
"paymentMethodCode": {"$ref": "#/$defs/PaymentMethod"},
"premiumModeQuantity": {"type": "integer"},
"preTaxCode": {"$ref": "#/$defs/PreTax"},
"issueAgeQuantity": {"type": "integer"},
"tobaccoUseIndicator": {"type": "boolean"},
"takeOverCoverageIndicator": {"type": "boolean"},
"enrollerProducerPartyID": {"type": "string"},
"beneficiaryGroupID": {"type": "string"},
"carrierID": {"type": "string"},
"electedCoverage": {"$ref": "#/$defs/ElectedCoverage"},
"coverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 1
},
"coverageEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
},
"coverageQuestionAnswer": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageQuestionAnswer"},
"minItems": 0
},
"coverageDeduction": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageDeduction"},
"minItems": 0
},
"coverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
},
"coverageCommissionSplit": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageCompensationSplit"},
"minItems": 0
},
"signatureDate": {
"type": "string",
"format": "date"
},
"coverageTransactionDate": {
"type": "string",
"format": "date"
},
"cobraIndicator": {"type": "boolean"},
"enrollmentInformationID": {"type": "string"},
"coverageChange": {"$ref": "#/$defs/CoverageChange"},
"coverageContribution": {"$ref": "#/$defs/CoverageContribution"},
"cobraEffectiveDate": {
"type": "string",
"format": "date"
},
"cobraPaidThroughDate": {
"type": "string",
"format": "date"
}
}
},
"FormSignature": {
"type": "object",
"required": [
"formSignatureID",
"formSignatureDate",
"formSignatureDataTypeCode"
],
"properties": {
"formSignatureID": {"type": "string"},
"formSignatureDate": {
"type": "string",
"format": "date"
},
"formSignatureDataTypeCode": {"$ref": "#/$defs/FormSignatureDataType"},
"formSignatureData": {
"type": "array",
"items": {"type": "integer"}
},
"signedByEmployeePartyID": {"type": "string"},
"signedByDependentPartyID": {"type": "string"},
"signedByProducerPartyID": {"type": "string"}
}
},
"Form": {
"type": "object",
"required": [
"formID",
"formName",
"formCreationDate",
"formCompletionDate",
"formTypeCode",
"formDataTypeCode",
"formCoverageID"
],
"properties": {
"formID": {"type": "string"},
"formName": {"type": "string"},
"formNumber": {"type": "string"},
"formCreationDate": {
"type": "string",
"format": "date"
},
"formCompletionDate": {
"type": "string",
"format": "date"
},
"formTypeCode": {"$ref": "#/$defs/FormType"},
"formDataTypeCode": {"$ref": "#/$defs/FormDataType"},
"formData": {
"type": "array",
"items": {"type": "integer"}
},
"formDataGUID": {"type": "string"},
"formSignature": {
"type": "array",
"items": {"$ref": "#/$defs/FormSignature"},
"minItems": 0
},
"formCoverageID": {
"type": "array",
"items": {"type": "string"},
"minItems": 1
}
}
},
"Employee": {
"type": "object",
"required": [
"employeePartyID",
"employeeName",
"employeeGenderCode",
"employeeBirthDate",
"employeeMailingAddress"
],
"properties": {
"employeePartyID": {"type": "string"},
"employeeIndividualTaxpayerIdentificationNumber": {"type": "string"},
"employeeSocialSecurityNumber": {"type": "string"},
"employeeIdentifier": {"type": "string"},
"employeeName": {"$ref": "#/$defs/StructuredPersonName"},
"employeeGenderCode": {"$ref": "#/$defs/Gender"},
"employeeBirthDate": {
"type": "string",
"format": "date"
},
"maritalStatusCode": {"$ref": "#/$defs/MaritalStatus"},
"employeeTobaccoUseCode": {"$ref": "#/$defs/TobaccoUse"},
"employeeHomePhone": {"type": "string"},
"employeeWorkPhone": {"type": "string"},
"employeeMobilePhone": {"type": "string"},
"employeeMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeHomeAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeWorkAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeEmail": {"type": "string"},
"employeeAlternateEmail": {"type": "string"},
"employmentInformation": {"$ref": "#/$defs/EmploymentInformation"},
"enrollmentInformation": {
"type": "array",
"items": {"$ref": "#/$defs/EnrollmentInformation"},
"minItems": 0
},
"event": {
"type": "array",
"items": {"$ref": "#/$defs/Event"},
"minItems": 0
},
"employeeEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
},
"dependent": {
"type": "array",
"items": {"$ref": "#/$defs/Dependent"},
"minItems": 0
},
"otherParty": {
"type": "array",
"items": {"$ref": "#/$defs/OtherParty"},
"minItems": 0
},
"beneficiaryGroup": {
"type": "array",
"items": {"$ref": "#/$defs/BeneficiaryGroup"},
"minItems": 0
},
"producer": {
"type": "array",
"items": {"$ref": "#/$defs/Producer"},
"minItems": 0
},
"coverage": {
"type": "array",
"items": {"$ref": "#/$defs/Coverage"},
"minItems": 0
},
"employeeForm": {
"type": "array",
"items": {"$ref": "#/$defs/Form"},
"minItems": 0
},
"disabilityIndicator": {"type": "boolean"}
}
},
"Employer": {
"type": "object",
"required": [
"employerPartyID",
"carrierMasterAgreementNumber",
"employerName",
"employee"
],
"properties": {
"employerPartyID": {"type": "string"},
"federalEmployerIdentificationNumber": {"type": "string"},
"carrierMasterAgreementNumber": {
"type": "array",
"items": {"$ref": "#/$defs/CarrierMasterAgreementNumber"},
"minItems": 1
},
"employerName": {"type": "string"},
"employerAddress": {"$ref": "#/$defs/PostalAddress"},
"employee": {
"type": "array",
"items": {"$ref": "#/$defs/Employee"},
"minItems": 1
}
}
},
"Audit": {
"type": "object",
"properties": {
"auditID": {"type": "string"},
"carrierRecordQuantity": {"type": "integer"},
"employerRecordQuantity": {"type": "integer"},
"employeeRecordQuantity": {"type": "integer"},
"dependentRecordQuantity": {"type": "integer"},
"otherPartyRecordQuantity": {"type": "integer"},
"beneficiaryGroupRecordQuantity": {"type": "integer"},
"eventRecordQuantity": {"type": "integer"},
"coverageRecordQuantity": {"type": "integer"},
"coverageRiderRecordQuantity": {"type": "integer"},
"employeeFormRecordQuantity": {"type": "integer"}
}
},
"Transmission": {
"type": "object",
"required": [
"transmissionGUID",
"senderName",
"senderPlatformName",
"receiverName",
"creationDateTime",
"testProductionCode",
"transmissionTypeCode",
"schemaVersionIdentifier",
"carrier",
"employer"
],
"properties": {
"transmissionGUID": {"type": "string"},
"senderName": {"type": "string"},
"senderPlatformName": {"type": "string"},
"receiverName": {"type": "string"},
"creationDateTime": {
"type": "string",
"format": "date-time"
},
"testProductionCode": {"$ref": "#/$defs/TestProduction"},
"transmissionTypeCode": {"$ref": "#/$defs/TransmissionType"},
"schemaVersionIdentifier": {"type": "string"},
"carrier": {
"type": "array",
"items": {"$ref": "#/$defs/Carrier"},
"minItems": 1
},
"employer": {
"type": "array",
"items": {"$ref": "#/$defs/Employer"},
"minItems": 1
},
"audit": {"$ref": "#/$defs/Audit"}
}
},
"TestProduction": {
"type": "string",
"enum": [
"Production",
"Test"
]
},
"TransmissionType": {
"type": "string",
"enum": [
"ActivesOnly",
"ChangesOnly",
"FullFile"
]
},
"StateProvince": {
"type": "string",
"enum": [
"AL",
"AK",
"AZ",
"AR",
"CA",
"CO",
"CT",
"DE",
"FL",
"GA",
"HI",
"ID",
"IL",
"IN",
"IA",
"KS",
"KY",
"LA",
"ME",
"MD",
"MA",
"MI",
"MN",
"MS",
"MO",
"MT",
"NE",
"NV",
"NH",
"NJ",
"NM",
"NY",
"NC",
"ND",
"OH",
"OK",
"OR",
"PA",
"RI",
"SC",
"SD",
"TN",
"TX",
"UT",
"VT",
"VA",
"WA",
"WV",
"WI",
"WY",
"DC",
"AS",
"GU",
"MP",
"PR",
"UM",
"VI",
"AB",
"BC",
"MB",
"NB",
"NL",
"NS",
"ON",
"PE",
"QC",
"SK",
"NT",
"NU",
"YT",
"AG",
"BS",
"CM",
"CS",
"CH",
"CL",
"DF",
"DG",
"GT",
"GR",
"HG",
"JA",
"EM",
"NA",
"OA",
"PU",
"QT",
"QR",
"SL",
"SI",
"SO",
"TB",
"TM",
"TL",
"VE",
"YU",
"ZA",
"AA",
"AE",
"AP"
]
},
"Country": {
"type": "string",
"enum": [
"AF",
"AL",
"DZ",
"AD",
"AO",
"AG",
"AR",
"AM",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BT",
"BO",
"BA",
"BW",
"BR",
"BN",
"BG",
"BF",
"BI",
"CV",
"KH",
"CM",
"CA",
"CF",
"TD",
"CL",
"CN",
"CO",
"KM",
"CG",
"CD",
"CR",
"CI",
"HR",
"CU",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FJ",
"FI",
"FR",
"GA",
"GM",
"GE",
"DE",
"GH",
"GR",
"GD",
"GT",
"GN",
"GW",
"GY",
"HT",
"VA",
"HN",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IL",
"IT",
"JM",
"JP",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MR",
"MU",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NZ",
"NI",
"NE",
"NG",
"MK",
"NO",
"OM",
"PK",
"PW",
"PA",
"PG",
"PY",
"PE",
"PH",
"PL",
"PT",
"QA",
"RO",
"RU",
"RW",
"KN",
"LC",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SK",
"SI",
"SB",
"SO",
"ZA",
"SS",
"ES",
"LK",
"SD",
"SR",
"SE",
"CH",
"SY",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TO",
"TT",
"TN",
"TR",
"TM",
"TV",
"UG",
"UA",
"AE",
"GB",
"US",
"USA",
"UY",
"UZ",
"VU",
"VE",
"VN",
"YE",
"ZM",
"ZW",
"OTH"
]
},
"Prefix": {
"type": "string",
"enum": [
"Dr",
"Mr",
"Mrs",
"Ms",
"Rev"
]
},
"Suffix": {
"type": "string",
"enum": [
"Jr",
"Sr",
"III",
"II",
"IV",
"V",
"VI",
"MD",
"DDS",
"PHD",
"Other"
]
},
"Gender": {
"type": "string",
"enum": [
"Female",
"Male",
"NonBinary",
"NotSpecified"
]
},
"MaritalStatus": {
"type": "string",
"enum": [
"Divorced",
"DomesticPartner",
"LegallySeparated",
"Married",
"Single",
"Widowed",
"Unknown"
]
},
"TobaccoUse": {
"type": "string",
"enum": [
"N",
"Y"
]
},
"Exempt": {
"type": "string",
"enum": [
"Exempt",
"Nonexempt"
]
},
"EmploymentType": {
"type": "string",
"enum": [
"Contract",
"FullTime",
"PartTime",
"PerDiem",
"Seasonal"
]
},
"EmploymentStatus": {
"type": "string",
"enum": [
"Active",
"LeaveOfAbsencePaid",
"LeaveOfAbsenceUnpaid",
"MilitaryLeave",
"OnDI",
"Retiree",
"Terminated"
]
},
"TerminationReason": {
"type": "string",
"enum": [
"ClientTermination-NotCOBRAEligible",
"ContractEnded-NotCOBRAEligible",
"Death",
"DirectHire-NotCOBRAEligible",
"Layoff",
"LeaveOfAbsence",
"LongTermDisability",
"Medicare/Termination",
"MilitaryLeave",
"Retirement",
"Seasonal-NotCOBRAEligible",
"Termination",
"Termination-Declined",
"Termination-Dissatisfaction",
"Termination-EligibleForRehire",
"Terminated-GrossMisconduct",
"Termination-IneligibleForRehire",
"Termination-Invol.Separation",
"Terminated- JobAbandonment",
"Termination-Mutual",
"Terminated-NoCall/NoShow",
"Termination-NotCOBRAEligible",
"Termination-Other Employment",
"Termination-Performance",
"Termination-PositionEliminated",
"Termination-Relocation",
"Termination-SeveranceOption",
"Termination-Voluntary",
"Other"
]
},
"WorkHoursFrequency": {
"type": "string",
"enum": [
"Annual",
"Monthly",
"Weekly"
]
},
"IncomeType": {
"type": "string",
"enum": [
"AdditionalCompensation",
"BenefitSalary",
"Bonus",
"Commission",
"DifferentialPay",
"FrozenPay",
"Salary",
"TotalCompensation"
]
},
"CategoryType": {
"type": "string",
"enum": [
"GroupStructure",
"Reporting"
]
},
"ContactType": {
"type": "string",
"enum": [
"AdditionalReportingContact",
"BenefitsCoordinator",
"ReportingManager",
"UnionContact"
]
},
"WorkShift": {
"type": "string",
"enum": [
"First",
"Second",
"Third",
"Fixed",
"On-Call",
"Rotate",
"Split"
]
},
"WorkScheduleType": {
"type": "string",
"enum": [
"Weekly",
"Holiday",
"Overtime"
]
},
"EnrollmentMethod": {
"type": "string",
"enum": [
"CallCenter",
"HumanResources",
"InternetOrSelfService",
"Mobile",
"OneOnOne",
"Paper"
]
},
"EventType": {
"type": "string",
"enum": [
"Coverage",
"Demographic",
"Employment"
]
},
"EventTypeReason": {
"type": "string",
"enum": [
"AdministrativeCorrection",
"Cancellation",
"ChildNoLongerEligible",
"ClientTermination",
"COBRAActivation",
"COBRAEndCoverage",
"InitialEnrollment",
"LateEntrant",
"LossOfSpousesBenefitEligibility",
"New",
"NewHireEnrollment",
"NewRetireeEnrollment",
"NonPaymentOfContributions",
"OpenEnrollment",
"QualifyingLifeEventEnrollment",
"Reenrollment",
"Reinstatement",
"RetirementEndCoverage",
"Rollover",
"CoverageChange",
"VoluntaryCancel",
"BirthAdoption",
"DependentDeath",
"DependentRegainsEligibility",
"Death",
"DemographicChange",
"DivorceLegalSeparation",
"Marriage",
"TobaccoChange",
"ZipLocationChange",
"BenefitClassChange",
"CommencePaidFMLALeave",
"CommencePaidNonFMLALeave",
"LossOfBenefitStatus",
"Rehire",
"Retirement",
"ReturnFromFMLALeave",
"IncreaseInCoverage",
"ReductionInCoverage",
"Termination",
"LongTermDisability",
"NewHire",
"Unknown",
"ShortTermDisability",
"CommenceUnpaidFMLALeave",
"GainOfBenefitStatus",
"ReturnFromNonFMLALeave",
"AgeLimitAttained",
"AgeRelatedReductionInCoverage",
"BeneficiaryChange"
]
},
"DependentRelationshipType": {
"type": "string",
"enum": [
"AdultDependent",
"Child",
"CollateralDependent",
"CustodialGrandchild",
"FormerSpouseOrPartner",
"Grandchild",
"Partner",
"Spouse",
"Stepchild",
"Other"
]
},
"StudentStatus": {
"type": "string",
"enum": [
"FullTime",
"PartTime",
"NonStudent"
]
},
"BeneficiaryRelationshipType": {
"type": "string",
"enum": [
"Child",
"Spouse",
"Sibling",
"Parent",
"Grandparent",
"Grandchild",
"Fiance",
"DomesticPartner",
"Friend",
"Other",
"Trust",
"Husband",
"Wife",
"Sister",
"Brother",
"Son",
"Daughter",
"Uncle",
"Aunt",
"MotherInLaw",
"FatherInLaw",
"CivilUnionPartner",
"Father",
"Mother",
"Estate",
"Charity",
"Cousin",
"OtherRelative",
"Self",
"ExSpouse",
"Employer",
"Girlfriend",
"Boyfriend",
"Stepdaughter",
"Stepson",
"Corporation"
]
},
"PartyType": {
"type": "string",
"enum": [
"Charity",
"Estate",
"Person",
"Trust",
"Other"
]
},
"BeneficiaryPartyType": {
"type": "string",
"enum": [
"Dependent",
"Employee",
"OtherParty"
]
},
"BeneficiaryType": {
"type": "string",
"enum": [
"Primary",
"Secondary"
]
},
"ProducerLicenseType": {
"type": "string",
"enum": [
"LifeHealth",
"Health"
]
},
"ProductType": {
"type": "string",
"enum": [
"Accident",
"AD&D",
"Cancer",
"CriticalIllness",
"Dental",
"Hospital",
"Life",
"LifestyleBenefits",
"LTD",
"Medical",
"PFL",
"STD",
"SavingsSpendingAccounts",
"StateDI",
"Vision"
]
},
"CoverageTier": {
"type": "string",
"enum": [
"ChildOnly",
"Employee",
"EmployeeChildren",
"EmployeeDependent",
"EmployeeFamily",
"EmployeeSpouse",
"Employee2Dependents",
"SpouseChildren",
"SpouseDependent",
"SpouseOnly"
]
},
"BenefitCalculationMethod": {
"type": "string",
"enum": [
"FlatAmount",
"MultipleOfSalary",
"Percentage"
]
},
"EmployeeContribution": {
"type": "string",
"enum": [
"EmployeePaid",
"EmployeePartial",
"EmployerPaid"
]
},
"PaymentMethod": {
"type": "string",
"enum": [
"DirectBill",
"PayrollDeduction"
]
},
"PreTax": {
"type": "string",
"enum": [
"PostTax",
"PreTax"
]
},
"ContributionLimitType": {
"type": "string",
"enum": [
"Single",
"Family"
]
},
"FormType": {
"type": "string",
"enum": [
"Application",
"BeneficiaryDesignation",
"CoverageOutline",
"DependentStatusDeclaration",
"Disclosure",
"EmployeeConsent",
"EnrollmentConfirmation",
"LeaveAuthorization",
"PaidTimeOffAuthorization",
"PaymentAuthorization",
"Replacement",
"SpousalConsent",
"Other"
]
},
"FormDataType": {
"type": "string",
"enum": [
"PDF",
"Image"
]
},
"FormSignatureDataType": {
"type": "string",
"enum": [
"ClickToSign",
"Image",
"Password",
"Recording",
"ThirdPartySignature",
"Topaz",
"VoicePrint"
]
}
}
}
Parameters
| Name | Description |
|---|---|
| TransmissionGUID | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | |
| SenderName | Name of the company sending electronic benefit records on behalf of a |
| group. | |
| SenderPlatformName | Identifies the Sender's system that is providing the data for this data |
| set. | |
| ReceiverName | Name of the company receiving electronic benefit records on behalf of a |
| group. | |
| CreationDateTime | UTC date and time the transmission was created. |
| TestProductionCode | Indicates the elements contained in this data set are production or |
| test data. | |
| TransmissionTypeCode | The type of data contained within the data set. |
| SchemaVersionIdentifier | Identifies the version of the standard that is being adhered to in this |
| data set. |
Benefits enrollment management
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
New Hire Enrollment 
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
new hire Enrollment
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Open Enrollment 
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Open Enrollment Request
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
New Dependent
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
New Dependent request
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Demographic Change 
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Demographic Change Request
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Qualifying Life Event 
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Qualifying Life Event Member Request
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Termination Request 
`# post /bem/enrollment ..
# You can also use wget
curl -X POST /bem/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
Request sample
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Termination Member Request
Use this endpoint to enroll a new employee, update demographics and/or employment information of an existing employee, terminate an employee, reinstate a terminated employee, update an employee coverages by either electing or waiving, add a dependent, terminate a dependent, update dependent demographics, reinstate a terminated dependent.
Example Response
200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Evidence of Insurability API
# post /eois/...
EOI schema ..
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"title": "LDExBEM",
"description": "1.3.2022.12.31",
"anyOf": [
{
"type": "object",
"properties": {
"transmission": {"$ref": "#/$defs/Transmission"}
}
}
],
"$defs": {
"Carrier": {
"type": "object",
"required": [
"carrierID",
"carrierName"
],
"properties": {
"carrierID": {"type": "string"},
"carrierName": {"type": "string"}
}
},
"CarrierMasterAgreementNumber": {
"type": "object",
"required": [
"carrierMasterAgreementNumberID",
"masterAgreementNumber",
"carrierID"
],
"properties": {
"carrierMasterAgreementNumberID": {"type": "string"},
"masterAgreementNumber": {"type": "string"},
"carrierID": {"type": "string"}
}
},
"PostalAddress": {
"type": "object",
"required": [
"firstLineAddress",
"cityName",
"postalCode"
],
"properties": {
"firstLineAddress": {"type": "string"},
"secondLineAddress": {"type": "string"},
"thirdLineAddress": {"type": "string"},
"cityName": {"type": "string"},
"stateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"postalCode": {"type": "string"},
"countryCode": {"$ref": "#/$defs/Country"}
}
},
"StructuredPersonName": {
"type": "object",
"properties": {
"prefixCode": {"$ref": "#/$defs/Prefix"},
"firstName": {"type": "string"},
"middleName": {"type": "string"},
"lastName": {"type": "string"},
"suffixCode": {"$ref": "#/$defs/Suffix"}
}
},
"EmploymentIncome": {
"type": "object",
"properties": {
"incomeTypeCode": {"$ref": "#/$defs/IncomeType"},
"incomeAmount": {"type": "number"},
"incomeModeCode": {
"type": "string",
"enum": [
"Hourly",
"Annual",
"Monthly12PerYear",
"BiWeekly26PerYear",
"SemiMonthly24PerYear",
"SemiMonthly21PerYear",
"Weekly52PerYear",
"Weekly48PerYear",
"Quarterly",
"SemiAnnual",
"9thly",
"10thly"
]
},
"incomeEffectiveDate": {
"type": "string",
"format": "date"
}
}
},
"EmploymentInformationUserDefinedCategory": {
"type": "object",
"required": ["categoryName"],
"properties": {
"categoryName": {"type": "string"},
"categoryValueString": {"type": "string"},
"categoryTypeCode": {"$ref": "#/$defs/CategoryType"}
}
},
"EmploymentContact": {
"type": "object",
"required": [
"contactTypeCode",
"contactName"
],
"properties": {
"contactTypeCode": {"$ref": "#/$defs/ContactType"},
"contactName": {"$ref": "#/$defs/StructuredPersonName"},
"contactSocialSecurityNumber": {"type": "string"},
"contactIdentifier": {"type": "string"},
"contactEmail": {"type": "string"},
"contactOrganizationName": {"type": "string"},
"contactPhone": {"type": "string"}
}
},
"WorkSchedule": {
"type": "object",
"required": ["workScheduleTypeCode"],
"properties": {
"workShiftCode": {"$ref": "#/$defs/WorkShift"},
"workScheduleTypeCode": {"$ref": "#/$defs/WorkScheduleType"},
"weeklyWorkedHoursQuantity": {"type": "number"},
"sundayWorkedHoursQuantity": {"type": "number"},
"mondayWorkedHoursQuantity": {"type": "number"},
"tuesdayWorkedHoursQuantity": {"type": "number"},
"wednesdayWorkedHoursQuantity": {"type": "number"},
"thursdayWorkedHoursQuantity": {"type": "number"},
"fridayWorkedHoursQuantity": {"type": "number"},
"saturdayWorkedHoursQuantity": {"type": "number"}
}
},
"EmploymentSchedule": {
"type": "object",
"properties": {
"scheduledHoursQuantity": {"type": "number"},
"scheduledHoursFrequencyCode": {"$ref": "#/$defs/WorkHoursFrequency"},
"last12MonthsWorkHoursQuantity": {"type": "number"},
"perWeekWorkedHoursQuantity": {"type": "number"},
"workSchedule": {
"type": "array",
"items": {"$ref": "#/$defs/WorkSchedule"},
"minItems": 0
}
}
},
"EmploymentInformation": {
"type": "object",
"required": [
"originalHireDate",
"employmentTypeCode",
"employmentStatusCode"
],
"properties": {
"originalHireDate": {
"type": "string",
"format": "date"
},
"mostRecentHireDate": {
"type": "string",
"format": "date"
},
"adjustedServiceDate": {
"type": "string",
"format": "date"
},
"exemptCode": {"$ref": "#/$defs/Exempt"},
"employmentTypeCode": {"$ref": "#/$defs/EmploymentType"},
"employmentStatusCode": {"$ref": "#/$defs/EmploymentStatus"},
"terminationDate": {
"type": "string",
"format": "date"
},
"terminationReasonCode": {"$ref": "#/$defs/TerminationReason"},
"jobTitleText": {"type": "string"},
"occupationText": {"type": "string"},
"workHoursQuantity": {"type": "number"},
"workHoursFrequencyCode": {"$ref": "#/$defs/WorkHoursFrequency"},
"workLocationText": {"type": "string"},
"payrollDeductionFrequencyQuantity": {"type": "integer"},
"payrollFrequencyQuantity": {"type": "integer"},
"supervisorFullName": {"type": "string"},
"supervisorEmailAddress": {"type": "string"},
"humanResourcePartnerEmailAddress": {"type": "string"},
"unionIndicator": {"type": "boolean"},
"unionLocalName": {"type": "string"},
"unionLocalNumber": {"type": "string"},
"unionMemberNumber": {"type": "string"},
"employmentIncome": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentIncome"},
"minItems": 0
},
"employmentInformationUserDefinedCategory": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentInformationUserDefinedCategory"},
"minItems": 0
},
"rule5075Indicator": {"type": "boolean"},
"workStateCode": {"$ref": "#/$defs/StateProvince"},
"keyEmployeeIndicator": {"type": "boolean"},
"employmentContact": {
"type": "array",
"items": {"$ref": "#/$defs/EmploymentContact"},
"minItems": 0
},
"employmentSchedule": {"$ref": "#/$defs/EmploymentSchedule"}
}
},
"EnrollmentInformation": {
"type": "object",
"required": ["enrollmentInformationID"],
"properties": {
"enrollmentInformationID": {"type": "string"},
"enrollmentMethodCode": {"$ref": "#/$defs/EnrollmentMethod"},
"employeeEnrollmentLocationAddress": {"$ref": "#/$defs/PostalAddress"},
"enrollmentCityName": {"type": "string"},
"enrollmentStateProvinceCode": {"$ref": "#/$defs/StateProvince"}
}
},
"Event": {
"type": "object",
"required": [
"eventID",
"eventTypeCode",
"eventTypeReasonCode",
"eventDate"
],
"properties": {
"eventID": {"type": "string"},
"eventTypeCode": {"$ref": "#/$defs/EventType"},
"eventTypeReasonCode": {"$ref": "#/$defs/EventTypeReason"},
"eventDate": {
"type": "string",
"format": "date"
},
"transactionDate": {
"type": "string",
"format": "date"
},
"enrollmentInformationID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"Dependent": {
"type": "object",
"required": [
"dependentPartyID",
"dependentRelationshipTypeCode",
"dependentBirthDate"
],
"properties": {
"dependentPartyID": {"type": "string"},
"dependentIndividualTaxpayerIdentificationNumber": {"type": "string"},
"dependentSocialSecurityNumber": {"type": "string"},
"dependentIdentifier": {"type": "string"},
"dependentName": {"$ref": "#/$defs/StructuredPersonName"},
"dependentRelationshipTypeCode": {"$ref": "#/$defs/DependentRelationshipType"},
"dependentGenderCode": {"$ref": "#/$defs/Gender"},
"dependentBirthDate": {
"type": "string",
"format": "date"
},
"dependentHomePhone": {"type": "string"},
"dependentWorkPhone": {"type": "string"},
"dependentMobilePhone": {"type": "string"},
"dependentMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"dependentHomeEmail": {"type": "string"},
"disabilityIndicator": {"type": "boolean"},
"studentStatusCode": {"$ref": "#/$defs/StudentStatus"},
"dependentTobaccoUseCode": {"$ref": "#/$defs/TobaccoUse"},
"dependentEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"OtherParty": {
"type": "object",
"required": [
"otherPartyID",
"otherPartyRelationshipTypeCode",
"otherPartyTypeCode"
],
"properties": {
"otherPartyID": {"type": "string"},
"otherPartyIndividualTaxpayerIdentificationNumber": {"type": "string"},
"otherPartyFederalEmployerIdentificationNumber": {"type": "string"},
"otherPartySocialSecurityNumber": {"type": "string"},
"otherPartyOrganizationName": {"type": "string"},
"otherPartyPersonName": {"$ref": "#/$defs/StructuredPersonName"},
"otherPartyRelationshipTypeCode": {"$ref": "#/$defs/BeneficiaryRelationshipType"},
"otherPartyTypeCode": {"$ref": "#/$defs/PartyType"},
"otherPartyGenderCode": {"$ref": "#/$defs/Gender"},
"otherPartyBirthDate": {
"type": "string",
"format": "date"
},
"otherPartyHomePhone": {"type": "string"},
"otherPartyWorkPhone": {"type": "string"},
"otherPartyMobilePhone": {"type": "string"},
"otherPartyMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"otherPartyHomeAddress": {"$ref": "#/$defs/PostalAddress"},
"otherPartyHomeEmail": {"type": "string"},
"otherPartyWorkEmail": {"type": "string"},
"otherPartyEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
}
}
},
"Beneficiary": {
"type": "object",
"required": [
"beneficiaryPartyID",
"beneficiaryPartyTypeCode",
"beneficiaryPercent",
"beneficiaryTypeCode"
],
"properties": {
"beneficiaryPartyID": {"type": "string"},
"beneficiaryPartyTypeCode": {"$ref": "#/$defs/BeneficiaryPartyType"},
"beneficiaryPercent": {"type": "number"},
"beneficiaryTypeCode": {"$ref": "#/$defs/BeneficiaryType"}
}
},
"BeneficiaryGroup": {
"type": "object",
"required": [
"beneficiaryGroupID",
"beneficiary"
],
"properties": {
"beneficiaryGroupID": {"type": "string"},
"beneficiary": {
"type": "array",
"items": {"$ref": "#/$defs/Beneficiary"},
"minItems": 1
}
}
},
"CarrierProducerNumber": {
"type": "object",
"required": [
"carrierProducerNumberID",
"carrierID",
"carrierProducerNumber"
],
"properties": {
"carrierProducerNumberID": {"type": "string"},
"carrierID": {"type": "string"},
"carrierProducerNumber": {"type": "string"}
}
},
"ProducerLicense": {
"type": "object",
"required": [
"producerLicenseID",
"producerLicenseTypeCode",
"producerLicenseStateProvinceCode",
"producerLicenseNumber"
],
"properties": {
"producerLicenseID": {"type": "string"},
"producerLicenseTypeCode": {"$ref": "#/$defs/ProducerLicenseType"},
"producerLicenseStateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"producerLicenseNumber": {"type": "string"}
}
},
"Producer": {
"type": "object",
"required": ["producerPartyID"],
"properties": {
"producerPartyID": {"type": "string"},
"producerFirstName": {"type": "string"},
"producerLastName": {"type": "string"},
"carrierProducerNumber": {
"type": "array",
"items": {"$ref": "#/$defs/CarrierProducerNumber"},
"minItems": 0
},
"producerLicense": {
"type": "array",
"items": {"$ref": "#/$defs/ProducerLicense"},
"minItems": 0
}
}
},
"Provider": {
"type": "object",
"properties": {
"providerIdentificationNumberText": {"type": "string"},
"providerName": {"type": "string"},
"existingPatientIndicator": {"type": "boolean"}
}
},
"CoverageInsured": {
"type": "object",
"required": [
"insuredPartyID",
"primaryInsuredIndicator",
"insuredCoverageEffectiveDate"
],
"properties": {
"insuredPartyID": {"type": "string"},
"primaryInsuredIndicator": {"type": "boolean"},
"tobaccoUseIndicator": {"type": "boolean"},
"insuredCoverageEffectiveDate": {
"type": "string",
"format": "date"
},
"insuredCoverageTerminationDate": {
"type": "string",
"format": "date"
},
"provider": {"$ref": "#/$defs/Provider"}
}
},
"CoverageRider": {
"type": "object",
"required": [
"coverageRiderID",
"riderIdentifier"
],
"properties": {
"coverageRiderID": {"type": "string"},
"riderIdentifier": {"type": "string"},
"riderName": {"type": "string"},
"coverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"benefitAmount": {"type": "number"},
"riderUnitQuantity": {"type": "number"},
"riderOptionIdentifier": {"type": "string"},
"preTaxCode": {"$ref": "#/$defs/PreTax"},
"employeePremiumContributionAmount": {"type": "number"},
"employerPremiumContributionAmount": {"type": "number"},
"riderEffectiveDate": {
"type": "string",
"format": "date"
},
"riderTerminationDate": {
"type": "string",
"format": "date"
}
}
},
"ElectedCoverage": {
"type": "object",
"properties": {
"electedCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"electedBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"electedBenefitAmount": {"type": "number"},
"electedBenefitFactor": {"type": "number"},
"electedEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"electedEmployeePremiumContributionAmount": {"type": "number"},
"electedEmployerPremiumContributionAmount": {"type": "number"},
"electedTotalPlanPremiumAmount": {"type": "number"},
"electedCoverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 0
},
"electedCoverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
}
}
},
"CoverageQuestionAnswer": {
"type": "object",
"required": [
"coverageQuestionAnswerID",
"questionIdentifier",
"answerPartyID"
],
"properties": {
"coverageQuestionAnswerID": {"type": "string"},
"questionIdentifier": {"type": "string"},
"answerIndicator": {"type": "boolean"},
"answerText": {"type": "string"},
"answerPartyID": {"type": "string"}
}
},
"CoverageDeduction": {
"type": "object",
"properties": {
"deductionTypeCode": {
"type": "string",
"enum": [
"Medical",
"401(k)",
"StateIncomeTax",
"PAUnemploymentTax",
"LocalityTax",
"Dental",
"Life",
"PensionContribution1",
"PensionContribution2",
"StateIncomeTax2",
"StateIncomeTax3",
"FreeForm1",
"FreeForm2",
"FreeForm3",
"FreeForm4",
"FreeForm5",
"SupplementalLife",
"LegalServices",
"Health",
"Hospitalization",
"Disability",
"FreeForm",
"AccidentalDeath&Dismemberment",
"Vision",
"RemimbursementHealthcareExpenses",
"DependentCareAssistance",
"AdoptiveAssistance",
"Multiple401K",
"PensionContribution",
"NJUmeploymentTax",
"AKUnemploymentTax",
"StateLeaveContribution",
"UnemploymentTax"
]
},
"deductionAmount": {"type": "number"},
"deductionFrequencyQuantity": {"type": "integer"},
"deductionTypeFreeFormValueString": {"type": "string"},
"deductionTypeStateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"deductionTypePreTaxCode": {"$ref": "#/$defs/PreTax"}
}
},
"CoverageCompensationSplit": {
"type": "object",
"required": [
"carrierProducerNumberID",
"compensationSplitPercent"
],
"properties": {
"carrierProducerNumberID": {"type": "string"},
"compensationSplitPercent": {"type": "number"}
}
},
"CoverageChange": {
"type": "object",
"properties": {
"changeCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"changeBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"changeBenefitAmount": {"type": "number"},
"changeBenefitFactor": {"type": "number"},
"changeEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"changeEmployeePremiumContributionAmount": {"type": "number"},
"changeEmployerPremiumContributionAmount": {"type": "number"},
"changeTotalPlanPremiumAmount": {"type": "number"},
"priorCoverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"priorBenefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"priorBenefitAmount": {"type": "number"},
"priorBenefitFactor": {"type": "number"},
"priorEmployeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"priorEmployeePremiumContributionAmount": {"type": "number"},
"priorEmployerPremiumContributionAmount": {"type": "number"},
"priorTotalPlanPremiumAmount": {"type": "number"},
"priorCoverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 0
},
"priorCoverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
}
}
},
"CoverageContribution": {
"type": "object",
"properties": {
"contributionLimitTypeCode": {"$ref": "#/$defs/ContributionLimitType"},
"planYearEmployeeContributionAmount": {"type": "number"},
"planYearEmployerContributionAmount": {"type": "number"},
"toDateEmployeeContributionAmount": {"type": "number"},
"toDateEmployerContributionAmount": {"type": "number"},
"contributionsRemainingQuantity": {"type": "integer"}
}
},
"Coverage": {
"type": "object",
"required": [
"coverageID",
"coverageEffectiveDate",
"carrierID",
"coverageInsured"
],
"properties": {
"coverageID": {"type": "string"},
"groupPolicyNumber": {"type": "string"},
"individualPolicyNumber": {"type": "string"},
"productTypeCode": {"$ref": "#/$defs/ProductType"},
"benefitPlanIdentifier": {"type": "string"},
"benefitClassIdentifier": {"type": "string"},
"benefitSubClassIdentifier": {"type": "string"},
"billGroupIdentifier": {"type": "string"},
"billSubGroupIdentifier": {"type": "string"},
"claimGroupIdentifier": {"type": "string"},
"claimSubGroupIdentifier": {"type": "string"},
"originalCoverageEffectiveDate": {
"type": "string",
"format": "date"
},
"coverageEffectiveDate": {
"type": "string",
"format": "date"
},
"coverageTerminationDate": {
"type": "string",
"format": "date"
},
"coverageTierCode": {"$ref": "#/$defs/CoverageTier"},
"benefitCalculationMethodCode": {"$ref": "#/$defs/BenefitCalculationMethod"},
"benefitAmount": {"type": "number"},
"benefitFactor": {"type": "number"},
"employeeContributionCode": {"$ref": "#/$defs/EmployeeContribution"},
"employeePremiumContributionAmount": {"type": "number"},
"employerPremiumContributionAmount": {"type": "number"},
"totalPlanPremiumAmount": {"type": "number"},
"benefitEarningsAmount": {"type": "number"},
"benefitEarningsEffectiveDate": {
"type": "string",
"format": "date"
},
"benefitModeQuantity": {"type": "integer"},
"paymentMethodCode": {"$ref": "#/$defs/PaymentMethod"},
"premiumModeQuantity": {"type": "integer"},
"preTaxCode": {"$ref": "#/$defs/PreTax"},
"issueAgeQuantity": {"type": "integer"},
"tobaccoUseIndicator": {"type": "boolean"},
"takeOverCoverageIndicator": {"type": "boolean"},
"enrollerProducerPartyID": {"type": "string"},
"beneficiaryGroupID": {"type": "string"},
"carrierID": {"type": "string"},
"electedCoverage": {"$ref": "#/$defs/ElectedCoverage"},
"coverageInsured": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageInsured"},
"minItems": 1
},
"coverageEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
},
"coverageQuestionAnswer": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageQuestionAnswer"},
"minItems": 0
},
"coverageDeduction": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageDeduction"},
"minItems": 0
},
"coverageRider": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageRider"},
"minItems": 0
},
"coverageCommissionSplit": {
"type": "array",
"items": {"$ref": "#/$defs/CoverageCompensationSplit"},
"minItems": 0
},
"signatureDate": {
"type": "string",
"format": "date"
},
"coverageTransactionDate": {
"type": "string",
"format": "date"
},
"cobraIndicator": {"type": "boolean"},
"enrollmentInformationID": {"type": "string"},
"coverageChange": {"$ref": "#/$defs/CoverageChange"},
"coverageContribution": {"$ref": "#/$defs/CoverageContribution"},
"cobraEffectiveDate": {
"type": "string",
"format": "date"
},
"cobraPaidThroughDate": {
"type": "string",
"format": "date"
}
}
},
"FormSignature": {
"type": "object",
"required": [
"formSignatureID",
"formSignatureDate",
"formSignatureDataTypeCode"
],
"properties": {
"formSignatureID": {"type": "string"},
"formSignatureDate": {
"type": "string",
"format": "date"
},
"formSignatureDataTypeCode": {"$ref": "#/$defs/FormSignatureDataType"},
"formSignatureData": {
"type": "array",
"items": {"type": "integer"}
},
"signedByEmployeePartyID": {"type": "string"},
"signedByDependentPartyID": {"type": "string"},
"signedByProducerPartyID": {"type": "string"}
}
},
"Form": {
"type": "object",
"required": [
"formID",
"formName",
"formCreationDate",
"formCompletionDate",
"formTypeCode",
"formDataTypeCode",
"formCoverageID"
],
"properties": {
"formID": {"type": "string"},
"formName": {"type": "string"},
"formNumber": {"type": "string"},
"formCreationDate": {
"type": "string",
"format": "date"
},
"formCompletionDate": {
"type": "string",
"format": "date"
},
"formTypeCode": {"$ref": "#/$defs/FormType"},
"formDataTypeCode": {"$ref": "#/$defs/FormDataType"},
"formData": {
"type": "array",
"items": {"type": "integer"}
},
"formDataGUID": {"type": "string"},
"formSignature": {
"type": "array",
"items": {"$ref": "#/$defs/FormSignature"},
"minItems": 0
},
"formCoverageID": {
"type": "array",
"items": {"type": "string"},
"minItems": 1
}
}
},
"Employee": {
"type": "object",
"required": [
"employeePartyID",
"employeeName",
"employeeGenderCode",
"employeeBirthDate",
"employeeMailingAddress"
],
"properties": {
"employeePartyID": {"type": "string"},
"employeeIndividualTaxpayerIdentificationNumber": {"type": "string"},
"employeeSocialSecurityNumber": {"type": "string"},
"employeeIdentifier": {"type": "string"},
"employeeName": {"$ref": "#/$defs/StructuredPersonName"},
"employeeGenderCode": {"$ref": "#/$defs/Gender"},
"employeeBirthDate": {
"type": "string",
"format": "date"
},
"maritalStatusCode": {"$ref": "#/$defs/MaritalStatus"},
"employeeTobaccoUseCode": {"$ref": "#/$defs/TobaccoUse"},
"employeeHomePhone": {"type": "string"},
"employeeWorkPhone": {"type": "string"},
"employeeMobilePhone": {"type": "string"},
"employeeMailingAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeHomeAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeWorkAddress": {"$ref": "#/$defs/PostalAddress"},
"employeeEmail": {"type": "string"},
"employeeAlternateEmail": {"type": "string"},
"employmentInformation": {"$ref": "#/$defs/EmploymentInformation"},
"enrollmentInformation": {
"type": "array",
"items": {"$ref": "#/$defs/EnrollmentInformation"},
"minItems": 0
},
"event": {
"type": "array",
"items": {"$ref": "#/$defs/Event"},
"minItems": 0
},
"employeeEventID": {
"type": "array",
"items": {"type": "string"},
"minItems": 0
},
"dependent": {
"type": "array",
"items": {"$ref": "#/$defs/Dependent"},
"minItems": 0
},
"otherParty": {
"type": "array",
"items": {"$ref": "#/$defs/OtherParty"},
"minItems": 0
},
"beneficiaryGroup": {
"type": "array",
"items": {"$ref": "#/$defs/BeneficiaryGroup"},
"minItems": 0
},
"producer": {
"type": "array",
"items": {"$ref": "#/$defs/Producer"},
"minItems": 0
},
"coverage": {
"type": "array",
"items": {"$ref": "#/$defs/Coverage"},
"minItems": 0
},
"employeeForm": {
"type": "array",
"items": {"$ref": "#/$defs/Form"},
"minItems": 0
},
"disabilityIndicator": {"type": "boolean"}
}
},
"Employer": {
"type": "object",
"required": [
"employerPartyID",
"carrierMasterAgreementNumber",
"employerName",
"employee"
],
"properties": {
"employerPartyID": {"type": "string"},
"federalEmployerIdentificationNumber": {"type": "string"},
"carrierMasterAgreementNumber": {
"type": "array",
"items": {"$ref": "#/$defs/CarrierMasterAgreementNumber"},
"minItems": 1
},
"employerName": {"type": "string"},
"employerAddress": {"$ref": "#/$defs/PostalAddress"},
"employee": {
"type": "array",
"items": {"$ref": "#/$defs/Employee"},
"minItems": 1
}
}
},
"Audit": {
"type": "object",
"properties": {
"auditID": {"type": "string"},
"carrierRecordQuantity": {"type": "integer"},
"employerRecordQuantity": {"type": "integer"},
"employeeRecordQuantity": {"type": "integer"},
"dependentRecordQuantity": {"type": "integer"},
"otherPartyRecordQuantity": {"type": "integer"},
"beneficiaryGroupRecordQuantity": {"type": "integer"},
"eventRecordQuantity": {"type": "integer"},
"coverageRecordQuantity": {"type": "integer"},
"coverageRiderRecordQuantity": {"type": "integer"},
"employeeFormRecordQuantity": {"type": "integer"}
}
},
"Transmission": {
"type": "object",
"required": [
"transmissionGUID",
"senderName",
"senderPlatformName",
"receiverName",
"creationDateTime",
"testProductionCode",
"transmissionTypeCode",
"schemaVersionIdentifier",
"carrier",
"employer"
],
"properties": {
"transmissionGUID": {"type": "string"},
"senderName": {"type": "string"},
"senderPlatformName": {"type": "string"},
"receiverName": {"type": "string"},
"creationDateTime": {
"type": "string",
"format": "date-time"
},
"testProductionCode": {"$ref": "#/$defs/TestProduction"},
"transmissionTypeCode": {"$ref": "#/$defs/TransmissionType"},
"schemaVersionIdentifier": {"type": "string"},
"carrier": {
"type": "array",
"items": {"$ref": "#/$defs/Carrier"},
"minItems": 1
},
"employer": {
"type": "array",
"items": {"$ref": "#/$defs/Employer"},
"minItems": 1
},
"audit": {"$ref": "#/$defs/Audit"}
}
},
"TestProduction": {
"type": "string",
"enum": [
"Production",
"Test"
]
},
"TransmissionType": {
"type": "string",
"enum": [
"ActivesOnly",
"ChangesOnly",
"FullFile"
]
},
"StateProvince": {
"type": "string",
"enum": [
"AL",
"AK",
"AZ",
"AR",
"CA",
"CO",
"CT",
"DE",
"FL",
"GA",
"HI",
"ID",
"IL",
"IN",
"IA",
"KS",
"KY",
"LA",
"ME",
"MD",
"MA",
"MI",
"MN",
"MS",
"MO",
"MT",
"NE",
"NV",
"NH",
"NJ",
"NM",
"NY",
"NC",
"ND",
"OH",
"OK",
"OR",
"PA",
"RI",
"SC",
"SD",
"TN",
"TX",
"UT",
"VT",
"VA",
"WA",
"WV",
"WI",
"WY",
"DC",
"AS",
"GU",
"MP",
"PR",
"UM",
"VI",
"AB",
"BC",
"MB",
"NB",
"NL",
"NS",
"ON",
"PE",
"QC",
"SK",
"NT",
"NU",
"YT",
"AG",
"BS",
"CM",
"CS",
"CH",
"CL",
"DF",
"DG",
"GT",
"GR",
"HG",
"JA",
"EM",
"NA",
"OA",
"PU",
"QT",
"QR",
"SL",
"SI",
"SO",
"TB",
"TM",
"TL",
"VE",
"YU",
"ZA",
"AA",
"AE",
"AP"
]
},
"Country": {
"type": "string",
"enum": [
"AF",
"AL",
"DZ",
"AD",
"AO",
"AG",
"AR",
"AM",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BT",
"BO",
"BA",
"BW",
"BR",
"BN",
"BG",
"BF",
"BI",
"CV",
"KH",
"CM",
"CA",
"CF",
"TD",
"CL",
"CN",
"CO",
"KM",
"CG",
"CD",
"CR",
"CI",
"HR",
"CU",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FJ",
"FI",
"FR",
"GA",
"GM",
"GE",
"DE",
"GH",
"GR",
"GD",
"GT",
"GN",
"GW",
"GY",
"HT",
"VA",
"HN",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IL",
"IT",
"JM",
"JP",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MR",
"MU",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NZ",
"NI",
"NE",
"NG",
"MK",
"NO",
"OM",
"PK",
"PW",
"PA",
"PG",
"PY",
"PE",
"PH",
"PL",
"PT",
"QA",
"RO",
"RU",
"RW",
"KN",
"LC",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SK",
"SI",
"SB",
"SO",
"ZA",
"SS",
"ES",
"LK",
"SD",
"SR",
"SE",
"CH",
"SY",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TO",
"TT",
"TN",
"TR",
"TM",
"TV",
"UG",
"UA",
"AE",
"GB",
"US",
"USA",
"UY",
"UZ",
"VU",
"VE",
"VN",
"YE",
"ZM",
"ZW",
"OTH"
]
},
"Prefix": {
"type": "string",
"enum": [
"Dr",
"Mr",
"Mrs",
"Ms",
"Rev"
]
},
"Suffix": {
"type": "string",
"enum": [
"Jr",
"Sr",
"III",
"II",
"IV",
"V",
"VI",
"MD",
"DDS",
"PHD",
"Other"
]
},
"Gender": {
"type": "string",
"enum": [
"Female",
"Male",
"NonBinary",
"NotSpecified"
]
},
"MaritalStatus": {
"type": "string",
"enum": [
"Divorced",
"DomesticPartner",
"LegallySeparated",
"Married",
"Single",
"Widowed",
"Unknown"
]
},
"TobaccoUse": {
"type": "string",
"enum": [
"N",
"Y"
]
},
"Exempt": {
"type": "string",
"enum": [
"Exempt",
"Nonexempt"
]
},
"EmploymentType": {
"type": "string",
"enum": [
"Contract",
"FullTime",
"PartTime",
"PerDiem",
"Seasonal"
]
},
"EmploymentStatus": {
"type": "string",
"enum": [
"Active",
"LeaveOfAbsencePaid",
"LeaveOfAbsenceUnpaid",
"MilitaryLeave",
"OnDI",
"Retiree",
"Terminated"
]
},
"TerminationReason": {
"type": "string",
"enum": [
"ClientTermination-NotCOBRAEligible",
"ContractEnded-NotCOBRAEligible",
"Death",
"DirectHire-NotCOBRAEligible",
"Layoff",
"LeaveOfAbsence",
"LongTermDisability",
"Medicare/Termination",
"MilitaryLeave",
"Retirement",
"Seasonal-NotCOBRAEligible",
"Termination",
"Termination-Declined",
"Termination-Dissatisfaction",
"Termination-EligibleForRehire",
"Terminated-GrossMisconduct",
"Termination-IneligibleForRehire",
"Termination-Invol.Separation",
"Terminated- JobAbandonment",
"Termination-Mutual",
"Terminated-NoCall/NoShow",
"Termination-NotCOBRAEligible",
"Termination-Other Employment",
"Termination-Performance",
"Termination-PositionEliminated",
"Termination-Relocation",
"Termination-SeveranceOption",
"Termination-Voluntary",
"Other"
]
},
"WorkHoursFrequency": {
"type": "string",
"enum": [
"Annual",
"Monthly",
"Weekly"
]
},
"IncomeType": {
"type": "string",
"enum": [
"AdditionalCompensation",
"BenefitSalary",
"Bonus",
"Commission",
"DifferentialPay",
"FrozenPay",
"Salary",
"TotalCompensation"
]
},
"CategoryType": {
"type": "string",
"enum": [
"GroupStructure",
"Reporting"
]
},
"ContactType": {
"type": "string",
"enum": [
"AdditionalReportingContact",
"BenefitsCoordinator",
"ReportingManager",
"UnionContact"
]
},
"WorkShift": {
"type": "string",
"enum": [
"First",
"Second",
"Third",
"Fixed",
"On-Call",
"Rotate",
"Split"
]
},
"WorkScheduleType": {
"type": "string",
"enum": [
"Weekly",
"Holiday",
"Overtime"
]
},
"EnrollmentMethod": {
"type": "string",
"enum": [
"CallCenter",
"HumanResources",
"InternetOrSelfService",
"Mobile",
"OneOnOne",
"Paper"
]
},
"EventType": {
"type": "string",
"enum": [
"Coverage",
"Demographic",
"Employment"
]
},
"EventTypeReason": {
"type": "string",
"enum": [
"AdministrativeCorrection",
"Cancellation",
"ChildNoLongerEligible",
"ClientTermination",
"COBRAActivation",
"COBRAEndCoverage",
"InitialEnrollment",
"LateEntrant",
"LossOfSpousesBenefitEligibility",
"New",
"NewHireEnrollment",
"NewRetireeEnrollment",
"NonPaymentOfContributions",
"OpenEnrollment",
"QualifyingLifeEventEnrollment",
"Reenrollment",
"Reinstatement",
"RetirementEndCoverage",
"Rollover",
"CoverageChange",
"VoluntaryCancel",
"BirthAdoption",
"DependentDeath",
"DependentRegainsEligibility",
"Death",
"DemographicChange",
"DivorceLegalSeparation",
"Marriage",
"TobaccoChange",
"ZipLocationChange",
"BenefitClassChange",
"CommencePaidFMLALeave",
"CommencePaidNonFMLALeave",
"LossOfBenefitStatus",
"Rehire",
"Retirement",
"ReturnFromFMLALeave",
"IncreaseInCoverage",
"ReductionInCoverage",
"Termination",
"LongTermDisability",
"NewHire",
"Unknown",
"ShortTermDisability",
"CommenceUnpaidFMLALeave",
"GainOfBenefitStatus",
"ReturnFromNonFMLALeave",
"AgeLimitAttained",
"AgeRelatedReductionInCoverage",
"BeneficiaryChange"
]
},
"DependentRelationshipType": {
"type": "string",
"enum": [
"AdultDependent",
"Child",
"CollateralDependent",
"CustodialGrandchild",
"FormerSpouseOrPartner",
"Grandchild",
"Partner",
"Spouse",
"Stepchild",
"Other"
]
},
"StudentStatus": {
"type": "string",
"enum": [
"FullTime",
"PartTime",
"NonStudent"
]
},
"BeneficiaryRelationshipType": {
"type": "string",
"enum": [
"Child",
"Spouse",
"Sibling",
"Parent",
"Grandparent",
"Grandchild",
"Fiance",
"DomesticPartner",
"Friend",
"Other",
"Trust",
"Husband",
"Wife",
"Sister",
"Brother",
"Son",
"Daughter",
"Uncle",
"Aunt",
"MotherInLaw",
"FatherInLaw",
"CivilUnionPartner",
"Father",
"Mother",
"Estate",
"Charity",
"Cousin",
"OtherRelative",
"Self",
"ExSpouse",
"Employer",
"Girlfriend",
"Boyfriend",
"Stepdaughter",
"Stepson",
"Corporation"
]
},
"PartyType": {
"type": "string",
"enum": [
"Charity",
"Estate",
"Person",
"Trust",
"Other"
]
},
"BeneficiaryPartyType": {
"type": "string",
"enum": [
"Dependent",
"Employee",
"OtherParty"
]
},
"BeneficiaryType": {
"type": "string",
"enum": [
"Primary",
"Secondary"
]
},
"ProducerLicenseType": {
"type": "string",
"enum": [
"LifeHealth",
"Health"
]
},
"ProductType": {
"type": "string",
"enum": [
"Accident",
"AD&D",
"Cancer",
"CriticalIllness",
"Dental",
"Hospital",
"Life",
"LifestyleBenefits",
"LTD",
"Medical",
"PFL",
"STD",
"SavingsSpendingAccounts",
"StateDI",
"Vision"
]
},
"CoverageTier": {
"type": "string",
"enum": [
"ChildOnly",
"Employee",
"EmployeeChildren",
"EmployeeDependent",
"EmployeeFamily",
"EmployeeSpouse",
"Employee2Dependents",
"SpouseChildren",
"SpouseDependent",
"SpouseOnly"
]
},
"BenefitCalculationMethod": {
"type": "string",
"enum": [
"FlatAmount",
"MultipleOfSalary",
"Percentage"
]
},
"EmployeeContribution": {
"type": "string",
"enum": [
"EmployeePaid",
"EmployeePartial",
"EmployerPaid"
]
},
"PaymentMethod": {
"type": "string",
"enum": [
"DirectBill",
"PayrollDeduction"
]
},
"PreTax": {
"type": "string",
"enum": [
"PostTax",
"PreTax"
]
},
"ContributionLimitType": {
"type": "string",
"enum": [
"Single",
"Family"
]
},
"FormType": {
"type": "string",
"enum": [
"Application",
"BeneficiaryDesignation",
"CoverageOutline",
"DependentStatusDeclaration",
"Disclosure",
"EmployeeConsent",
"EnrollmentConfirmation",
"LeaveAuthorization",
"PaidTimeOffAuthorization",
"PaymentAuthorization",
"Replacement",
"SpousalConsent",
"Other"
]
},
"FormDataType": {
"type": "string",
"enum": [
"PDF",
"Image"
]
},
"FormSignatureDataType": {
"type": "string",
"enum": [
"ClickToSign",
"Image",
"Password",
"Recording",
"ThirdPartySignature",
"Topaz",
"VoicePrint"
]
}
}
}
Evidence of Insurability
Api endpoint to pass an evidence of insurability decision to a Ben Admin Tech Partner to ensure they have the most current decision for an insured's coverage used to send an EOI Application Status Inquiry request to the Carrier to ensure their that system has the most current Application status for an insured's coverage and carrier sends back EOI Application Status Update to the Partner
Parameters
| Name | Description |
|---|---|
| TransmissionGUID | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | |
| SenderName | Name of the company sending electronic benefit records on behalf of a |
| group. | |
| SenderPlatformName | Identifies the Sender's system that is providing the data for this data |
| set. | |
| ReceiverName | Name of the company receiving electronic benefit records on behalf of a |
| group. | |
| CreationDateTime | UTC date and time the transmission was created. |
| TestProductionCode | Indicates the elements contained in this data set are production or |
| test data. | |
| TransmissionTypeCode | The type of data contained within the data set. |
| SchemaVersionIdentifier | Identifies the version of the standard that is being adhered to in this |
| data set. |
EOI Request.
# post /eois/...
Code samples
Evidence of Insurability application
Api endpoint to pass an evidence of insurability decision to a Ben Admin Tech Partner to ensure they have the most current decision for an insured's coverage used to send an EOI Application Status Inquiry request to the Carrier to ensure their that system has the most current Application status for an insured's coverage and carrier sends back EOI Application Status Update to the Partner
# You can also use wget
curl -X POST /eois/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Example Response 200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
EOI status.
# post /eois/...
Code samples
Evidence of Insurability application status push by Carrier and Request by Ben Admin
Api endpoint to pass an evidence of insurability decision to a Ben Admin Tech Partner to ensure they have the most current decision for an insured's coverage used to send an EOI Application Status Inquiry request to the Carrier to ensure their that system has the most current Application status for an insured's coverage and carrier sends back EOI Application Status Update to the Partner
# You can also use wget
curl -X POST /eois/..
-H 'Content-Type: application/json' \
-H 'Accept: */*'
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Example Response 200
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Usecases
Member Management
| BeneficiaryManagement | Beneficiary Add |
| Beneficiary Change | |
| Beneficiary Allocation Change | |
| Beneficiary Type Change | |
| BenefitsEligibilityManagement | EAP-new hire.re-hire |
| EAP-demographic changes | |
| EAP-termination of an existing employment | |
| FML- new hire.re-hire | |
| FML-demographic changes to an existing employee | |
| FML-termination of an existing employment | |
| PFL-new hire.re-hire | |
| PFL-demographic changes | |
| PFL-termination of an existing employment | |
| CoverageChange | New Hire Coverage Changes |
| Annual Enrollment Coverage Changes | |
| Qualifying Life Event Coverage Changes | |
| Account Structure Change | |
| Coverage reduction of Employee (benefit based) | |
| Coverage increase of Employee (benefit based) | |
| Coverage reduction of Employee (tier-based) | |
| Coverage increase of Employee (tier-based) | |
| Coverage reduction of dependent (benefit based) | |
| Coverage increase of dependent (benefit based) | |
| Coverage reduction of dependent (tier based) | |
| Coverage increase of dependent (tier based) | |
| Demographic Change Employee | |
| Demographic Change Dependent | |
| Beneficiary Change Employee | |
| Beneficiary Change Dependent | |
| Employee cancels.terminated | |
| Employee reinstates coverage | |
| CoverageElection | New Hire Coverage Elections |
| Open Enrollment Coverage Elections | |
| Coverage Election due to Qualifying Life Event | |
| CoverageTermination | Open Enrollment Coverage Terminations |
| Qualifying Life Event.Perpetual Enrollment Coverage Terminations | |
| FormsManagement | Embedded Form |
| Linked Form | |
| IssueAge | StackedElection |
| Downgrade | |
| Termination | |
| Portability | |
| Cancelation | |
| Non-CoverageChange | Changes to personal information without coverage changes |
| Changes to employment information | |
| SavingsAndSpendingAccounts | New Election |
| Change Election | |
| Existing Account Cancelation.Termination | |
| Monthly Account Change Election | |
Evidence of Insurability
| EOI Decision (Carrier-initiated) | EOI full approval .The Insurance carrier approves entire coverage amount requested for underwriting and sends to Ben Admin system to update coverage. |
| EOI partial approval .The Insurance carrier approves partial coverage amount requested for underwriting and sends to Ben Admin system to update coverage. | |
| EOI Decline .The Insurance carrier denies coverage amount requested for underwriting and sends to Ben Admin system to update coverage. | |
| EOI Closed .The Insurance carrier closes or expires the request for underwriting. | |
| EOI Application update to Ben Admin by Carrier | Not Started on file .Application received but EOI process yet to start |
| Not Submitted .Applicant has not started the application for EOI | |
| Pending .EOI process in progress pending with some action | |
| Completed .EOI process completed and update the status to applicant | |
| EOI Application Status Request by Ben Admin | Not started no record .The carrier has a record of the enrollment but no EOI application data has been received. |
| Not Started on file .carrier has a record of the enrollment but no EOI application data has been received. | |
| Not Submitted .carriers with an online EOI capture tool that can detect that an applicant has begun the process of providing EOI without having submitted the application. | |
| Pending .carrier has received the EOI application but its Incomplete submission or Waiting on applicant action or Carrier is reviewing. | |
| Completed .carrier has completed its review of the application and reached an EOI Application Decision. |
title: LDExBEM REST API
Parameters
| Name | Located in | Description | Required | Type |
|---|---|---|---|---|
| enrollmentMetadata | formData | Meta data describing LDExBEM payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver. Must conform to definition of definitions/enrollmentMetadata. | Yes | string (json) |
| enrollmentPayload | formData | The LDExBEM payload (XML or JSON) | Yes | binary |
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit. |
| 500 | Internal Server Error - fatal error during processing of request. |
| 501 | Not implemented - BEM upload is not supported. |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
{
"$schema": "http://json-schema.org/draft/2020-12/schema",
"title": "LDExBEM",
"description": "1.3.2022.12.31",
"anyOf": [
{
"type": "object",
"properties": {
"transmission": {"$ref": "#/$defs/Transmission"}
}
}
],
"$defs": {
"Carrier": {
"type": "object",
"required": [
"carrierID",
"carrierName"
],
"properties": {
"carrierID": {"type": "string"},
"carrierName": {"type": "string"}
}
},
"CarrierMasterAgreementNumber": {
"type": "object",
"required": [
"carrierMasterAgreementNumberID",
"masterAgreementNumber",
"carrierID"
],
"properties": {
"carrierMasterAgreementNumberID": {"type": "string"},
"masterAgreementNumber": {"type": "string"},
"carrierID": {"type": "string"}
}
},
"PostalAddress": {
"type": "object",
"required": [
"firstLineAddress",
"cityName",
"postalCode"
],
"properties": {
"firstLineAddress": {"type": "string"},
"secondLineAddress": {"type": "string"},
"thirdLineAddress": {"type": "string"},
"cityName": {"type": "string"},
"stateProvinceCode": {"$ref": "#/$defs/StateProvince"},
"postalCode": {"type": "string"},
"countryCode": {"$ref": "#/$defs/Country"}
}
},
BeneficiaryManagement
Beneficiary Add
Description
A beneficiary is to be added to one or more new coverage elections.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "NHEVT1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "NHEVT1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "W34D",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Description |
|---|---|
| TransmissionGUID | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | |
| SenderName | Name of the company sending electronic benefit records on behalf of a |
| group. | |
| SenderPlatformName | Identifies the Senders system that is providing the data for this data |
| set. | |
| ReceiverName | Name of the company receiving electronic benefit records on behalf of a |
| group. | |
| CreationDateTime | UTC date and time the transmission was created. |
| TestProductionCode | Indicates the elements contained in this data set are production or |
| test data. | |
| TransmissionTypeCode | The type of data contained within the data set. |
| SchemaVersionIdentifier | Identifies the version of the standard that is being adhered to in this |
| data set. | |
| Carrier | An entity, such as an insurance company, sending or receiving the data |
| in this transmission. | |
| CarrierID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CarrierName | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | |
| Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| FederalEmployerIdentificationNumber | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | |
| CarrierMasterAgreementNumber | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | |
| the agreement (aka policy) number for some carriers. | |
| CarrierMasterAgreementNumberID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| MasterAgreementNumber | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | |
| the agreement (aka policy) number for some carriers. | |
| CarrierID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| EmployerName | This is a representation of the organizational entitys name. |
| EmployerAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | |
| duties. | |
| EmployeePartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| EmployeeSocialSecurityNumber | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | |
| EmployeeIdentifier | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | |
| FirstName | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | |
| LastName | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | |
| characteristics may include biological sex, sex-based social structures, or gender | |
| identity. | |
| EmployeeBirthDate | The date on which a person was born. |
| MaritalStatusCode | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | |
| civil status. | |
| EmployeeTobaccoUseCode | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| EmployeeWorkPhone | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| EmployeeMobilePhone | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| EmployeeMailingAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| EmployeeHomeAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| EmployeeWorkAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| EmployeeEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| EmployeeAlternateEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| EmploymentInformation | Information about the employment arrangement between an Employer and |
| Employee. | |
| OriginalHireDate | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | The latest date the Employee was hired. |
| ExemptCode | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | |
| EmploymentTypeCode | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | |
| EmploymentStatusCode | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | |
| JobTitleText | The position held by an employee. |
| OccupationText | A job or profession. |
| WorkHoursQuantity | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | Number of scheduled Pay Periods per year. |
| UnionIndicator | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Money that an individual receives in exchange for providing a good or |
| service. | |
| IncomeTypeCode | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | The actual dollar amount. |
| IncomeModeCode | Frequency in which Income is received. |
| IncomeEffectiveDate | Date Employee started earning that the reflected salary. |
| Event | A thing that happens or takes place, especially one of importance - |
| e.g., a universal reason for member enrollment such as new hire, annual enrollment, | |
| qualifying life event. | |
| EventID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| EventTypeCode | It describes the things that are happening / taking place that are of |
| importance. | |
| Coverage | The amount of risk or liability that is covered for a person or entity |
| by way of insurance products and services. | |
| EventTypeReasonCode | A cause, explanation, or justification for an action or event. |
| EventDate | The date on which a specific occurrence took place. |
| TransactionDate | Date the employee enrolled and saved their elections in the enrollment |
| system. | |
| EmployeeEventID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| Dependent | Person who relies on another, especially a family member, for financial |
| support. | |
| DependentPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| DependentSocialSecurityNumber | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | |
| DependentIdentifier | Unique identifier assigned by the employee. |
| DependentName | This is a representation of the person entitys name. |
| FirstName | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | |
| LastName | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | Relationship of the dependent to the employee. |
| DependentGenderCode | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | |
| characteristics may include biological sex, sex-based social structures, or gender | |
| identity. | |
| DependentBirthDate | The date on which a person was born. |
| DependentHomePhone | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| DependentWorkPhone | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| DependentMobilePhone | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| DependentMailingAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| SecondLineAddress | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | |
| ThirdLineAddress | The third line of a formatted address that is sometimes used for things |
| like care of. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| CountryCode | The country where the address is located. |
| DependentHomeEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| DisabilityIndicator | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | |
| it, and is not engaged in any other gainful employment. | |
| StudentStatusCode | A person who is studying at a school or college. |
| DependentTobaccoUseCode | Identifies whether a person uses tobacco or not. |
| DependentEventID | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | |
| enrollment, qualifying life event. | |
| OtherParty | An organization or person associated with workplace benefit |
| events/transactions for which limited information is available - i.e., a Trust, Charity, | |
| etc. | |
| OtherPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| OtherPartyFederalEmployerIdentificationNumber | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | |
| OtherPartySocialSecurityNumber | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | |
| OtherPartyOrganizationName | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | |
| OtherPartyPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | |
| FirstName | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | |
| LastName | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | Relationship of the party to the employee. |
| OtherPartyTypeCode | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | |
| characteristics may include biological sex, sex-based social structures, or gender | |
| identity. | |
| OtherPartyBirthDate | The date on which a person was born. |
| OtherPartyHomePhone | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyWorkPhone | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyMobilePhone | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyMailingAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| SecondLineAddress | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | |
| ThirdLineAddress | The third line of a formatted address that is sometimes used for things |
| like care of. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| CountryCode | The country where the address is located. |
| OtherPartyHomeAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| SecondLineAddress | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | |
| ThirdLineAddress | The third line of a formatted address that is sometimes used for things |
| like care of. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| CountryCode | The country where the address is located. |
| OtherPartyHomeEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| OtherPartyWorkEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| OtherPartyEventID | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | |
| OtherPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| OtherPartyFederalEmployerIdentificationNumber | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | |
| OtherPartySocialSecurityNumber | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | |
| OtherPartyOrganizationName | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | |
| OtherPartyPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | |
| FirstName | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | |
| LastName | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | Relationship of the party to the employee. |
| OtherPartyTypeCode | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | |
| characteristics may include biological sex, sex-based social structures, or gender | |
| identity. | |
| OtherPartyBirthDate | The date on which a person was born. |
| OtherPartyHomePhone | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyWorkPhone | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyMobilePhone | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | |
| OtherPartyMailingAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| SecondLineAddress | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | |
| ThirdLineAddress | The third line of a formatted address that is sometimes used for things |
| like care of. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| CountryCode | The country where the address is located. |
| OtherPartyHomeAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | |
| FirstLineAddress | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | |
| SecondLineAddress | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | |
| ThirdLineAddress | The third line of a formatted address that is sometimes used for things |
| like care of. | |
| CityName | The city where the address is located. |
| StateProvinceCode | The region (depending on the country, this could be the state or |
| province) where the address is located. | |
| PostalCode | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | |
| CountryCode | The country where the address is located. |
| OtherPartyHomeEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| OtherPartyWorkEmail | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | |
| OtherPartyEventID | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | |
| BeneficiaryGroup | A grouping of beneficiary parties which are then related to the |
| benefits for which they have been named to derive some form of compensation from after | |
| certain parameters are met. | |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| Beneficiary | No documentation available |
| BeneficiaryPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| BeneficiaryPartyTypeCode | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | |
| Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | |
| duties. | |
| BeneficiaryPercent | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| Beneficiary | No documentation available |
| BeneficiaryPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| BeneficiaryPartyTypeCode | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | |
| Dependent | Person who relies on another, especially a family member, for financial |
| support. | |
| BeneficiaryPercent | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| Beneficiary | No documentation available |
| BeneficiaryPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| BeneficiaryPartyTypeCode | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | |
| Dependent | Person who relies on another, especially a family member, for financial |
| support. | |
| BeneficiaryPercent | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| BeneficiaryPartyTypeCode | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | |
| OtherParty | An organization or person associated with workplace benefit |
| events/transactions for which limited information is available - i.e., a Trust, Charity, | |
| etc. | |
| BeneficiaryPercent | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | Whether the beneficiary is primary or contingent. |
| Coverage | The amount of risk or liability that is covered for a person or entity |
| by way of insurance products and services. | |
| CoverageID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| GroupPolicyNumber | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | |
| ProductTypeCode | Universal identifier for a specific logical product group that may be |
| elected by a member. | |
| BenefitPlanIdentifier | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | |
| BenefitClassIdentifier | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BenefitSubClassIdentifier | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BillGroupIdentifier | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | |
| OriginalCoverageEffectiveDate | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | |
| CoverageEffectiveDate | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | |
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | |
| EmployerPremiumContributionAmount, etc. | |
| CoverageTierCode | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | |
| BenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| BenefitAmount | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | |
| EmployeeContributionCode | Indicates the employee contribution towards the product coverage |
| premium. | |
| EmployeePremiumContributionAmount | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| PaymentMethodCode | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | |
| PremiumModeQuantity | The frequency of premium and contribution payment by a Employee or |
| Employee. | |
| PreTaxCode | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CarrierID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| ElectedCoverage | The amount of risk elected for a person by way of insurance products |
| and coverages. | |
| ElectedBenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| ElectedEmployeeContributionCode | Indicates the employee contribution towards the elected product |
| coverage premium. | |
| ElectedTotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageEventID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CoverageID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| GroupPolicyNumber | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | |
| ProductTypeCode | Universal identifier for a specific logical product group that may be |
| elected by a member. | |
| BenefitPlanIdentifier | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | |
| BenefitClassIdentifier | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BenefitSubClassIdentifier | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BillGroupIdentifier | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | |
| OriginalCoverageEffectiveDate | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | |
| CoverageEffectiveDate | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | |
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | |
| EmployerPremiumContributionAmount, etc. | |
| CoverageTierCode | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | |
| Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | |
| duties. | |
| BenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| BenefitAmount | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | |
| EmployeeContributionCode | Indicates the employee contribution towards the product coverage |
| premium. | |
| EmployeePremiumContributionAmount | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| PaymentMethodCode | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | |
| PremiumModeQuantity | The frequency of premium and contribution payment by a Employee or |
| Employee. | |
| PreTaxCode | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CarrierID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| ElectedCoverage | The amount of risk elected for a person by way of insurance products |
| and coverages. | |
| ElectedBenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| ElectedEmployeeContributionCode | Indicates the employee contribution towards the elected product |
| coverage premium. | |
| ElectedTotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageEventID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CoverageID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| GroupPolicyNumber | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | |
| ProductTypeCode | Universal identifier for a specific logical product group that may be |
| elected by a member. | |
| BenefitPlanIdentifier | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | |
| BenefitClassIdentifier | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BenefitSubClassIdentifier | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | |
| the same insurance plan configuration. | |
| BillGroupIdentifier | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | |
| OriginalCoverageEffectiveDate | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | |
| CoverageEffectiveDate | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | |
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | |
| EmployerPremiumContributionAmount, etc. | |
| CoverageTierCode | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | |
| BenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| BenefitAmount | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | |
| EmployeeContributionCode | Indicates the employee contribution towards the product coverage |
| premium. | |
| EmployeePremiumContributionAmount | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| PaymentMethodCode | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | |
| PremiumModeQuantity | The frequency of premium and contribution payment by a Employee or |
| Employee. | |
| PreTaxCode | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| CarrierID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| ElectedCoverage | The amount of risk elected for a person by way of insurance products |
| and coverages. | |
| ElectedBenefitCalculationMethodCode | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | |
| ElectedEmployeeContributionCode | Indicates the employee contribution towards the elected product |
| coverage premium. | |
| ElectedTotalPlanPremiumAmount | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | |
| InsuredPartyID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| PrimaryInsuredIndicator | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | |
| TobaccoUseIndicator | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | |
| the benefit plan. | |
| CoverageEventID | An unique identifier for each instance of an object established within |
| the context of a given transaction. | |
| Audit | No documentation available |
| AuditID | Unique identifier created by the originator for this instance of the |
| electronic transmission. | |
| CarrierRecordQuantity | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | A count of Beneficiary Group records included in the electronic |
| transmission. | |
| EventRecordQuantity | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | A count of Coverage Rider records included in the electronic |
| transmission. |
Description
BeneficiaryChange
** Description **
A change to an existing beneficiary designation is to be made; alternatively, an existing coverage election is having a beneficiary designation added for the first time.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "BENEFCH1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "BeneficiaryChange",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "BENEFCH1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "BENEFCH1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
},
{
"BeneficiaryGroupID": "2773201",
"Beneficiary": [
{
"BeneficiaryPartyID": "TT254",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Secondary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": null
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "2773201",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "2",
"BeneficiaryGroupRecordQuantity": "3",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Beneficiary Allocation Change
Description
A change to the percent allocation for one or more beneficiaries designated for one or more products needs to be communicated to the carrier.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "BENEFCH1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "BeneficiaryChange",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "BENEFCH1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "BENEFCH1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
},
{
"BeneficiaryGroupID": "885014",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "35.00",
"BeneficiaryTypeCode": "Secondary"
},
{
"BeneficiaryPartyID": "TT254",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "65.00",
"BeneficiaryTypeCode": "Secondary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": null
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "885014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "2",
"BeneficiaryGroupRecordQuantity": "3",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
BeneficiaryTypeChange
Description An existing beneficiary designation is changing from primary to contingent, or vice versa; this may optionally involve a percent allocation change.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-01-17T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "BENEFCH1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "BeneficiaryChange",
"EventDate": "2020-02-10",
"TransactionDate": "2020-02-05"
},
"EmployeeEventID": "BENEFCH1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Baldwin"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-01-01",
"DependentHomePhone": "2153654587",
"DependentWorkPhone": "6325698745",
"DependentMobilePhone": "2014587965",
"DependentMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "someone@flexer.com",
"DisabilityIndicator": "0",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N",
"DependentEventID": "BENEFCH1234"
},
"OtherParty": [
{
"OtherPartyID": "12001",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "256588923",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Ben",
"LastName": "Hosper"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Male",
"OtherPartyBirthDate": "1976-01-01",
"OtherPartyHomePhone": "2055487896",
"OtherPartyWorkPhone": "2548754587",
"OtherPartyMobilePhone": "2041549625",
"OtherPartyMailingAddress": {
"FirstLineAddress": "8 Thresa Blvd",
"SecondLineAddress": "Apt 3",
"ThirdLineAddress": "Box 43",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "At.Home@monsure.com",
"OtherPartyWorkEmail": "At.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
},
{
"OtherPartyID": "TT254",
"OtherPartyFederalEmployerIdentificationNumber": "99-9999999",
"OtherPartySocialSecurityNumber": "288956523",
"OtherPartyOrganizationName": "Family",
"OtherPartyPersonName": {
"FirstName": "Shelby",
"LastName": "Cuisine"
},
"OtherPartyRelationshipTypeCode": "Cousin",
"OtherPartyTypeCode": "Estate",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1999-05-15",
"OtherPartyHomePhone": "2058954876",
"OtherPartyWorkPhone": "2544588757",
"OtherPartyMobilePhone": "2049615425",
"OtherPartyMailingAddress": {
"FirstLineAddress": "568 Climate Dr",
"SecondLineAddress": null,
"ThirdLineAddress": null,
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeAddress": {
"FirstLineAddress": "1234 Bona Blvd",
"SecondLineAddress": "Apt3454",
"ThirdLineAddress": "Box 5",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"OtherPartyHomeEmail": "SCusine@monsure.com",
"OtherPartyWorkEmail": "ShelbyC.Work@monsure.com",
"OtherPartyEventID": "BENEFCH1234"
}
],
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "UC0014",
"Beneficiary": {
"BeneficiaryPartyID": "45",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "2500014",
"Beneficiary": {
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "1773200",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
}
]
},
{
"BeneficiaryGroupID": "1773202",
"Beneficiary": [
{
"BeneficiaryPartyID": "1522222",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "75.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "12001",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "25.00",
"BeneficiaryTypeCode": "Primary"
},
{
"BeneficiaryPartyID": "TT254",
"BeneficiaryPartyTypeCode": "OtherParty",
"BeneficiaryPercent": "100.00",
"BeneficiaryTypeCode": "Secondary"
}
]
}
],
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "1",
"TakeOverCoverageIndicator": "1",
"BeneficiaryGroupID": "UC0014",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": null,
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": null
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P983346",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773202",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "1",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "0",
"PrimaryInsuredIndicator": "1",
"TobaccoUseIndicator": "0",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "BENEFCH1234"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "2",
"BeneficiaryGroupRecordQuantity": "4",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartyFederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyOrganizationName | string | This is a representation of the organizational entitys name, when the |
| Other Party is an organization. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| OtherPartyHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyWorkEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| OtherPartyEventID | string | A thing that happen or take place, especially ones of importance to |
| Beneficiaries - e.g.,change of address | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| OtherParty | Object | OtherParty Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
BenefitsEligibilityManagement
NewHire
Description
Communicate newly hired employees for Family and Medical Leave (FMLA) services
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "EAPCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "EAPCARRIER_ID",
"CarrierName": "EAPCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "34-5678901",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "EAP-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": [
{
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2020-08-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly"
}
},
{
"EmployeePartyID": "916061",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "569842",
"EmployeeName": {
"FirstName": "COOPER",
"MiddleName": "D",
"LastName": "HERNANDEZTEST"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1992-06-13",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6830001234",
"EmployeeMailingAddress": {
"FirstLineAddress": "2409 Main Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeEmail": "cooper.hernandeztest@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-13",
"MostRecentHireDate": "2020-08-01",
"AdjustedServiceDate": "2016-06-13",
"ExemptCode": "Nonexempt",
"EmploymentTypeCode": "PerDiem",
"EmploymentStatusCode": "Active",
"OccupationText": "KitchenStaff",
"WorkHoursFrequencyCode": "Weekly"
}
}
]
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "2"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| UnionLocalName | string | The name of a locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionLocalNumber | string | The number for the locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionMemberNumber | string | An identifier for a person belonging to a Union Local. |
| Rule50_75Indicator | boolean | To be eligible for Family and Medical Leave Act (FMLA), an employee |
| must work at a location that has 50 employees within a 75-mile radius. This is a simple | ||
| indicator as to whether the individual meets this requirement (or not). | ||
| WorkStateCode | StateProvince | The actual state in which the Employee works. |
| KeyEmployeeIndicator | boolean | Signifies the employee to be within the highest paid 10% of employees |
| and within 75 miles of the employees work state. | ||
| EmploymentContact | Object | EmploymentContact Object |
| ContactTypeCode | ContactType | Identifies the type of Employee contact. |
| ContactName | StructuredPersonName | The name of the Employees contact. |
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| SuffixCode | Suffix | The titles, qualifications, or positions that follow the persons name |
| when addressing her formally or professionally, usually when writing - e.g., Sr., Jr., | ||
| etc. | ||
| ContactSocialSecurityNumber | string | The US government issued identifier for the Employees Contact. |
| ContactIdentifier | string | The Employer or Plan Sponsor Issued Identifier for the Employees |
| Contact. | ||
| ContactEmail | string | The electronic address for the Employees contact. |
| EmploymentSchedule | Object | EmploymentSchedule Object |
| ScheduledHoursQuantity | decimal | The number of hours scheduled to work. |
| Last12MonthsWorkHoursQuantity | decimal | The number of hours worked during the last 12 months. |
| PerWeekWorkedHoursQuantity | decimal | The number of hours worked per week. |
| WorkSchedule | Object | WorkSchedule Object |
| WorkShiftCode | WorkShift | The time period during which an Employee is at work. |
| WorkScheduleTypeCode | WorkScheduleType | Indicates the type of work week. |
| WeeklyWorkedHoursQuantity | decimal | The number of hours worked in a given week. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "FMLCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "FMLCARRIER_ID",
"CarrierName": "FMLCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "FML-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": {
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-06-05",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly",
"UnionIndicator": "true",
"UnionLocalName": "AmalgamatedRocketScientists",
"UnionLocalNumber": "123",
"UnionMemberNumber": "10",
"Rule50_75Indicator": "true",
"WorkStateCode": "TX",
"KeyEmployeeIndicator": "true",
"EmploymentContact": {
"ContactTypeCode": "BenefitsCoordinator",
"ContactName": {
"PrefixCode": "Mr",
"FirstName": "Sam",
"LastName": "Smith",
"SuffixCode": "Jr"
},
"ContactSocialSecurityNumber": "987654321",
"ContactIdentifier": "123456",
"ContactEmail": "sam.smith@my_employer.com"
},
"EmploymentSchedule": {
"ScheduledHoursQuantity": "40.0",
"Last12MonthsWorkHoursQuantity": "2080.0",
"PerWeekWorkedHoursQuantity": "40.0",
"WorkSchedule": {
"WorkShiftCode": "First",
"WorkScheduleTypeCode": "Weekly",
"WeeklyWorkedHoursQuantity": "40.0"
}
}
}
}
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1"
}
}
}
DemographicChange
Description
Communicate demographic changes for existing employees for Family and Medical Leave (FMLA) services.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "FMLCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "FMLCARRIER_ID",
"CarrierName": "FMLCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "FML-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": {
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMobilePhone": "4696661212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"SecondLineAddress": "Apt 1A",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-06-05",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly",
"UnionIndicator": "true",
"UnionLocalName": "AmalgamatedRocketScientists",
"UnionLocalNumber": "123",
"UnionMemberNumber": "10",
"EmploymentInformationUserDefinedCategory": {
"CategoryName": "FMLA_Eligibile",
"CategoryValueString": "true",
"CategoryTypeCode": "Reporting"
},
"Rule50_75Indicator": "true",
"WorkStateCode": "TX",
"KeyEmployeeIndicator": "true",
"EmploymentContact": {
"ContactTypeCode": "BenefitsCoordinator",
"ContactName": {
"PrefixCode": "Mr",
"FirstName": "Sam",
"LastName": "Smith",
"SuffixCode": "Jr"
},
"ContactSocialSecurityNumber": "987654321",
"ContactIdentifier": "123456",
"ContactEmail": "sam.smith@my_employer.com"
},
"EmploymentSchedule": {
"ScheduledHoursQuantity": "40.0",
"Last12MonthsWorkHoursQuantity": "2080.0",
"PerWeekWorkedHoursQuantity": "40.0",
"WorkSchedule": {
"WorkShiftCode": "First",
"WorkScheduleTypeCode": "Weekly",
"WeeklyWorkedHoursQuantity": "40.0"
}
}
}
}
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| UnionLocalName | string | The name of a locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionLocalNumber | string | The number for the locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionMemberNumber | string | An identifier for a person belonging to a Union Local. |
| EmploymentInformationUserDefinedCategory | Object | EmploymentInformationUserDefinedCategory Object |
| CategoryName | string | The name of the user defined data point associated with a given |
| Employees employment. | ||
| CategoryValueString | string | The string (textual) actual content for the user defined data point |
| associated with a given Employees employment. | ||
| CategoryTypeCode | CategoryType | Identifies the category of user defined elements being defined. |
| Rule50_75Indicator | boolean | To be eligible for Family and Medical Leave Act (FMLA), an employee |
| must work at a location that has 50 employees within a 75-mile radius. This is a simple | ||
| indicator as to whether the individual meets this requirement (or not). | ||
| WorkStateCode | StateProvince | The actual state in which the Employee works. |
| KeyEmployeeIndicator | boolean | Signifies the employee to be within the highest paid 10% of employees |
| and within 75 miles of the employees work state. | ||
| EmploymentContact | Object | EmploymentContact Object |
| ContactTypeCode | ContactType | Identifies the type of Employee contact. |
| ContactName | StructuredPersonName | The name of the Employees contact. |
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| SuffixCode | Suffix | The titles, qualifications, or positions that follow the persons name |
| when addressing her formally or professionally, usually when writing - e.g., Sr., Jr., | ||
| etc. | ||
| ContactSocialSecurityNumber | string | The US government issued identifier for the Employees Contact. |
| ContactIdentifier | string | The Employer or Plan Sponsor Issued Identifier for the Employees |
| Contact. | ||
| ContactEmail | string | The electronic address for the Employees contact. |
| EmploymentSchedule | Object | EmploymentSchedule Object |
| ScheduledHoursQuantity | decimal | The number of hours scheduled to work. |
| Last12MonthsWorkHoursQuantity | decimal | The number of hours worked during the last 12 months. |
| PerWeekWorkedHoursQuantity | decimal | The number of hours worked per week. |
| WorkSchedule | Object | WorkSchedule Object |
| WorkShiftCode | WorkShift | The time period during which an Employee is at work. |
| WorkScheduleTypeCode | WorkScheduleType | Indicates the type of work week. |
| WeeklyWorkedHoursQuantity | decimal | The number of hours worked in a given week. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
EmploymentTermination
Description
Communicate employment terminations for employees for Family and Medical Leave (FMLA) services.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "FMLCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "FMLCARRIER_ID",
"CarrierName": "FMLCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "FML-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": {
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMobilePhone": "4696661212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"SecondLineAddress": "Apt 1A",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-06-05",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Terminated",
"TerminationDate": "2020-07-31",
"TerminationReasonCode": "Termination",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly",
"UnionIndicator": "true",
"UnionLocalName": "AmalgamatedRocketScientists",
"UnionLocalNumber": "123",
"UnionMemberNumber": "10",
"EmploymentInformationUserDefinedCategory": {
"CategoryName": "FMLA_Eligibile",
"CategoryValueString": "true",
"CategoryTypeCode": "Reporting"
},
"Rule50_75Indicator": "true",
"WorkStateCode": "TX",
"KeyEmployeeIndicator": "true",
"EmploymentContact": {
"ContactTypeCode": "BenefitsCoordinator",
"ContactName": {
"PrefixCode": "Mr",
"FirstName": "Sam",
"LastName": "Smith",
"SuffixCode": "Jr"
},
"ContactSocialSecurityNumber": "987654321",
"ContactIdentifier": "123456",
"ContactEmail": "sam.smith@my_employer.com"
},
"EmploymentSchedule": {
"ScheduledHoursQuantity": "40.0",
"Last12MonthsWorkHoursQuantity": "2080.0",
"PerWeekWorkedHoursQuantity": "40.0",
"WorkSchedule": {
"WorkShiftCode": "First",
"WorkScheduleTypeCode": "Weekly",
"WeeklyWorkedHoursQuantity": "40.0"
}
}
}
}
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| TerminationDate | date | The last date of employment for an employee. |
| TerminationReasonCode | TerminationReason | Describes why the persons employment was terminated. |
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| UnionLocalName | string | The name of a locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionLocalNumber | string | The number for the locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionMemberNumber | string | An identifier for a person belonging to a Union Local. |
| EmploymentInformationUserDefinedCategory | Object | EmploymentInformationUserDefinedCategory Object |
| CategoryName | string | The name of the user defined data point associated with a given |
| Employees employment. | ||
| CategoryValueString | string | The string (textual) actual content for the user defined data point |
| associated with a given Employees employment. | ||
| CategoryTypeCode | CategoryType | Identifies the category of user defined elements being defined. |
| Rule50_75Indicator | boolean | To be eligible for Family and Medical Leave Act (FMLA), an employee |
| must work at a location that has 50 employees within a 75-mile radius. This is a simple | ||
| indicator as to whether the individual meets this requirement (or not). | ||
| WorkStateCode | StateProvince | The actual state in which the Employee works. |
| KeyEmployeeIndicator | boolean | Signifies the employee to be within the highest paid 10% of employees |
| and within 75 miles of the employees work state. | ||
| EmploymentContact | Object | EmploymentContact Object |
| ContactTypeCode | ContactType | Identifies the type of Employee contact. |
| ContactName | StructuredPersonName | The name of the Employees contact. |
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| SuffixCode | Suffix | The titles, qualifications, or positions that follow the persons name |
| when addressing her formally or professionally, usually when writing - e.g., Sr., Jr., | ||
| etc. | ||
| ContactSocialSecurityNumber | string | The US government issued identifier for the Employees Contact. |
| ContactIdentifier | string | The Employer or Plan Sponsor Issued Identifier for the Employees |
| Contact. | ||
| ContactEmail | string | The electronic address for the Employees contact. |
| EmploymentSchedule | Object | EmploymentSchedule Object |
| ScheduledHoursQuantity | decimal | The number of hours scheduled to work. |
| Last12MonthsWorkHoursQuantity | decimal | The number of hours worked during the last 12 months. |
| PerWeekWorkedHoursQuantity | decimal | The number of hours worked per week. |
| WorkSchedule | Object | WorkSchedule Object |
| WorkShiftCode | WorkShift | The time period during which an Employee is at work. |
| WorkScheduleTypeCode | WorkScheduleType | Indicates the type of work week. |
| WeeklyWorkedHoursQuantity | decimal | The number of hours worked in a given week. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
Rehire
Description
Communicate re-hired employees for Family and Medical Leave (FMLA) services
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "FMLCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "FMLCARRIER_ID",
"CarrierName": "FMLCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "FML-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": {
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-06-05",
"MostRecentHireDate": "2020-08-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly",
"UnionIndicator": "true",
"UnionLocalName": "AmalgamatedRocketScientists",
"UnionLocalNumber": "123",
"UnionMemberNumber": "10",
"Rule50_75Indicator": "true",
"WorkStateCode": "TX",
"KeyEmployeeIndicator": "true",
"EmploymentContact": {
"ContactTypeCode": "BenefitsCoordinator",
"ContactName": {
"PrefixCode": "Mr",
"FirstName": "Sam",
"LastName": "Smith",
"SuffixCode": "Jr"
},
"ContactSocialSecurityNumber": "987654321",
"ContactIdentifier": "123456",
"ContactEmail": "sam.smith@my_employer.com"
},
"EmploymentSchedule": {
"ScheduledHoursQuantity": "40.0",
"Last12MonthsWorkHoursQuantity": "1213.33",
"PerWeekWorkedHoursQuantity": "40.0",
"WorkSchedule": {
"WorkShiftCode": "First",
"WorkScheduleTypeCode": "Weekly",
"WeeklyWorkedHoursQuantity": "40.0"
}
}
}
}
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| UnionLocalName | string | The name of a locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionLocalNumber | string | The number for the locally-based group of workers with a charter from a |
| national or international union. | ||
| UnionMemberNumber | string | An identifier for a person belonging to a Union Local. |
| Rule50_75Indicator | boolean | To be eligible for Family and Medical Leave Act (FMLA), an employee |
| must work at a location that has 50 employees within a 75-mile radius. This is a simple | ||
| indicator as to whether the individual meets this requirement (or not). | ||
| WorkStateCode | StateProvince | The actual state in which the Employee works. |
| KeyEmployeeIndicator | boolean | Signifies the employee to be within the highest paid 10% of employees |
| and within 75 miles of the employees work state. | ||
| EmploymentContact | Object | EmploymentContact Object |
| ContactTypeCode | ContactType | Identifies the type of Employee contact. |
| ContactName | StructuredPersonName | The name of the Employees contact. |
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| SuffixCode | Suffix | The titles, qualifications, or positions that follow the persons name |
| when addressing her formally or professionally, usually when writing - e.g., Sr., Jr., | ||
| etc. | ||
| ContactSocialSecurityNumber | string | The US government issued identifier for the Employees Contact. |
| ContactIdentifier | string | The Employer or Plan Sponsor Issued Identifier for the Employees |
| Contact. | ||
| ContactEmail | string | The electronic address for the Employees contact. |
| EmploymentSchedule | Object | EmploymentSchedule Object |
| ScheduledHoursQuantity | decimal | The number of hours scheduled to work. |
| Last12MonthsWorkHoursQuantity | decimal | The number of hours worked during the last 12 months. |
| PerWeekWorkedHoursQuantity | decimal | The number of hours worked per week. |
| WorkSchedule | Object | WorkSchedule Object |
| WorkShiftCode | WorkShift | The time period during which an Employee is at work. |
| WorkScheduleTypeCode | WorkScheduleType | Indicates the type of work week. |
| WeeklyWorkedHoursQuantity | decimal | The number of hours worked in a given week. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
NewHireRehire
Description Communicate newly hired ore rehired employees for Employee Assistance Program (EAP) services.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-08-06-16.24.25.063000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "EAPCARRIER",
"CreationDateTime": "2020-08-06T16:24:25",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "EAPCARRIER_ID",
"CarrierName": "EAPCARRIER"
},
"Employer": {
"EmployerPartyID": "PartyID",
"FederalEmployerIdentificationNumber": "34-5678901",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "EAP-123456",
"CarrierID": "MyCarrier_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": [
{
"EmployeePartyID": "211713",
"EmployeeSocialSecurityNumber": "999909999",
"EmployeeIdentifier": "985603",
"EmployeeName": {
"FirstName": "CAROLYN",
"LastName": "OWENSTEST"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1976-05-05",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "4695551212",
"EmployeeMailingAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "2402 Main Street",
"CityName": "AUSTIN",
"StateProvinceCode": "TX",
"PostalCode": "75082",
"CountryCode": "US"
},
"EmployeeEmail": "carolyn.owenstest@my_employer.com",
"EmploymentInformation": {
"OriginalHireDate": "2020-08-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"OccupationText": "RocketScientist",
"WorkHoursFrequencyCode": "Weekly"
}
},
{
"EmployeePartyID": "916061",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "569842",
"EmployeeName": {
"FirstName": "COOPER",
"MiddleName": "D",
"LastName": "HERNANDEZTEST"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1992-06-13",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6830001234",
"EmployeeMailingAddress": {
"FirstLineAddress": "2409 Main Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeEmail": "cooper.hernandeztest@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-13",
"MostRecentHireDate": "2020-08-01",
"AdjustedServiceDate": "2016-06-13",
"ExemptCode": "Nonexempt",
"EmploymentTypeCode": "PerDiem",
"EmploymentStatusCode": "Active",
"OccupationText": "KitchenStaff",
"WorkHoursFrequencyCode": "Weekly"
}
}
]
},
"Audit": {
"AuditID": "2020-08-06-16.24.25.063000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "2"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| AdjustedServiceDate | date | A rehired employee’s company service date, when recognition of prior |
| service is granted. For example, Employee A is rehired on June 1, 2019 and is credited | ||
| for 5 years and 1 month of prior service so their AdjustedServiceDate is May 1, 2014. | ||
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| OccupationText | string | A job or profession. |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
CoverageChange
NewHireCoverageChanges
Description
Communicate one or more elected coverage changes for employees and/or dependents as the Employee is going through the New Hire process. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9999106c-c731-466a-8235-3377985285yz",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZplatform.com",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "80122606",
"MasterAgreementNumber": "80122606",
"CarrierID": "U7435"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1792689",
"EmployeeSocialSecurityNumber": "998701592",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Hannah",
"LastName": "Holley"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1984-05-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017589472",
"EmployeeWorkPhone": "6019142649",
"EmployeeMobilePhone": "6012189602",
"EmployeeMailingAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "hannah.holley@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse II",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "52000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-22"
}
},
"Event": {
"EventID": "98765",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "CoverageChange",
"EventDate": "2019-03-27"
},
"Dependent": [
{
"DependentPartyID": "179268901",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1985-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268902",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2015-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "985421",
"Beneficiary": {
"BeneficiaryPartyID": "179268902",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397498",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "HI1000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765"
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "D5200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "1000",
"BenefitFactor": ".50",
"BenefitModeQuantity": "52",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "D1200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "3250",
"BenefitFactor": ".75",
"BenefitModeQuantity": "12",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "L000001",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397502",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VL0009",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "MultipleOfSalary",
"BenefitAmount": "150000",
"BenefitFactor": "2",
"BenefitEarningsAmount": "75000",
"BenefitEarningsEffectiveDate": "2019-04-01",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "MultipleOfSalary",
"ElectedBenefitAmount": "225000",
"ElectedBenefitFactor": "3"
},
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357901",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "S900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357902",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "C900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "25000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "ACC10000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeFamily",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CII00002",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CIS0003",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "61009H",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO1",
"BenefitClassIdentifier": "A001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
}
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "2",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "11",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| CoverageChange | Object | CoverageChange Object |
| EventDate | date | The date on which a specific occurrence took place. |
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Annual Enrollment Coverage Changes
Description
Communicate one or more elected coverage changes for employees and/or dependents as the Employee is going through the annual enrollment process. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9999106c-c731-466a-8235-3377985285yz",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZplatform.com",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "80122606",
"MasterAgreementNumber": "80122606",
"CarrierID": "U7435"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1792689",
"EmployeeSocialSecurityNumber": "998701592",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Hannah",
"LastName": "Holley"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1984-05-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017589472",
"EmployeeWorkPhone": "6019142649",
"EmployeeMobilePhone": "6012189602",
"EmployeeMailingAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "hannah.holley@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse II",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "52000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-22"
}
},
"Event": {
"EventID": "98765",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2019-11-05"
},
"Dependent": [
{
"DependentPartyID": "179268901",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1985-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268902",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2015-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "985421",
"Beneficiary": {
"BeneficiaryPartyID": "179268902",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397498",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "HI1000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2019-12-31",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765"
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "D5200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "1000",
"BenefitFactor": ".50",
"BenefitModeQuantity": "52",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "D1200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "3250",
"BenefitFactor": ".75",
"BenefitModeQuantity": "12",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "L000001",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397502",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VL0009",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "MultipleOfSalary",
"BenefitAmount": "150000",
"BenefitFactor": "2",
"BenefitEarningsAmount": "75000",
"BenefitEarningsEffectiveDate": "2019-04-01",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "MultipleOfSalary",
"ElectedBenefitAmount": "225000",
"ElectedBenefitFactor": "3"
},
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357901",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "S900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357902",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "C900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "25000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "ACC10000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2019-12-31",
"CoverageTierCode": "EmployeeFamily",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CII00002",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2019-12-31",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CIS0003",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2019-12-31",
"CoverageTierCode": "SpouseOnly",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "61009H",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO1",
"BenefitClassIdentifier": "A001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
}
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "2",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "11",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Qualifying Life Event Coverage Changes
Description
Communicate one or more elected coverage changes for employees and/or dependents as the Employee is going through the qualifying life event process including (but not limited to): Marriage, Divorce, and Birth. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9999106c-c731-466a-8235-3377985285yz",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZplatform.com",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "80122606",
"MasterAgreementNumber": "80122606",
"CarrierID": "U7435"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1792689",
"EmployeeSocialSecurityNumber": "998701592",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Hannah",
"LastName": "Holley"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1984-05-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017589472",
"EmployeeWorkPhone": "6019142649",
"EmployeeMobilePhone": "6012189602",
"EmployeeMailingAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "hannah.holley@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse II",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "52000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-22"
}
},
"Event": {
"EventID": "98765",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "QualifyingLifeEventEnrollment",
"EventDate": "2019-08-05"
},
"Dependent": [
{
"DependentPartyID": "179268901",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1985-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268902",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2015-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268903",
"DependentSocialSecurityNumber": "998-76-3691",
"DependentIdentifier": "41263929",
"DependentName": {
"FirstName": "Mellissa",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2019-08-04",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "985421",
"Beneficiary": {
"BeneficiaryPartyID": "179268902",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397498",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "HI1000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2019-12-31",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765"
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "D5200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "1000",
"BenefitFactor": ".50",
"BenefitModeQuantity": "52",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "D1200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "3250",
"BenefitFactor": ".75",
"BenefitModeQuantity": "12",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "L000001",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397502",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VL0009",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "MultipleOfSalary",
"BenefitAmount": "225000",
"BenefitFactor": "3",
"BenefitEarningsAmount": "75000",
"BenefitEarningsEffectiveDate": "2019-04-01",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357901",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "S900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357902",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "C900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E1000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "25000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268903",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "ACC10000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeFamily",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CII00002",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CIS0003",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "61009H",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO1",
"BenefitClassIdentifier": "A001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
}
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "3",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "11",
"CoverageRiderRecordQuantity": "0"
}
}
}
Account Structure Change
Description
Communicate one or more elected coverage changes for employees and/or dependents as the Employee is going through an account structure change including (but not limited to): Class, Billing or Claims categories. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9999106c-c731-466a-8235-3377985285yz",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZ platform",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "80122606",
"MasterAgreementNumber": "80122606",
"CarrierID": "U7435"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1792689",
"EmployeeSocialSecurityNumber": "998701592",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Hannah",
"LastName": "Holley"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1984-05-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017589472",
"EmployeeWorkPhone": "6019142649",
"EmployeeMobilePhone": "6012189602",
"EmployeeMailingAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "hannah.holley@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse II",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "52000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-22"
}
},
"Event": {
"EventID": "98765",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "BenefitClassChange",
"EventDate": "2019-10-05"
},
"EmployeeEventID": "98765",
"Dependent": [
{
"DependentPartyID": "179268901",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1985-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268902",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2015-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "179268903",
"DependentSocialSecurityNumber": "998-76-3691",
"DependentIdentifier": "41263929",
"DependentName": {
"FirstName": "Mellissa",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2019-08-04",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "985421",
"Beneficiary": {
"BeneficiaryPartyID": "179268902",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397498",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "HI1000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765"
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "D5200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "1000",
"BenefitFactor": ".50",
"BenefitModeQuantity": "52",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "61009D",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "D1200",
"BenefitClassIdentifier": "20001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "Percentage",
"BenefitAmount": "3250",
"BenefitFactor": ".75",
"BenefitModeQuantity": "12",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "L000001",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E2000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397502",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "246813579",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VL0009",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E2000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"BenefitCalculationMethodCode": "MultipleOfSalary",
"BenefitAmount": "225000",
"BenefitFactor": "3",
"BenefitEarningsAmount": "75000",
"BenefitEarningsEffectiveDate": "2019-04-01",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"BeneficiaryGroupID": "985421",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357901",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "S900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E2000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "79999",
"IndividualPolicyNumber": "24681357902",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "C900",
"BenefitClassIdentifier": "A1000",
"BenefitSubClassIdentifier": "E2000",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "25000",
"BenefitModeQuantity": "1",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "179268903",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "ACC10000",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeFamily",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CII00002",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "61009A",
"IndividualPolicyNumber": "975318642",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CIS0003",
"BenefitClassIdentifier": "1000A",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "179268901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "61009H",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO1",
"BenefitClassIdentifier": "A001",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1792689",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
}
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "3",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "11",
"CoverageRiderRecordQuantity": "0"
}
}
}
Coverage reduction of EE (benefit based)
Description
Employee wants to change their benefit amount for a given product/coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ platform",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ReductionInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "2500",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "1",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage increase of EE (benefit based)
Description
Employee wants to change their benefit amount for a given product/coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "IncreaseInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "7500",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage reduction of EE (tier-based)
Description
Employee wants to change their coverage tier for a given product/coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ReductionInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "2500",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "1",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage increase of EE (tier-based)
Description
Employee wants to change their coverage tier for a given product/coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "IncreaseInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "10000",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "4",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage reduction of dependent (benefit based)
Description
Employee wants to change the benefit amount for a dependent for a given product/coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ System",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ReductionInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "2500",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "1",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage increase of dependent (benefit based)
Description
Employee wants to change the benefit amount for a dependent for a given product/coverage.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ System",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "IncreaseInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "10000",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "4",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
Coverage reduction of dependent (tier based)
Description
Coverage reduction of dependent (tier based)
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ System",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ReductionInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "2500",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "1",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Coverage increase of dependent (tier based)
Description
Coverage increase of dependent (tier based)
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ System",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ReductionInCoverage",
"EventDate": "2020-03-27",
"TransactionDate": "2020-03-27"
},
"EmployeeEventID": "EEEVT001",
"Dependent": [
{
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Nancy",
"LastName": "Drew"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1961-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
},
{
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8742",
"DependentName": {
"FirstName": "Liam",
"LastName": "Quixote"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "1999-01-05",
"DependentMailingAddress": {
"FirstLineAddress": "4 Theresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
}
}
],
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2019-08-20",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeFamily",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "10000",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "4",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "2",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
Employee reinstates coverage
Description
Employee requests reinstatement of coverage with Carrier
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381818",
"SenderName": "XYZ Carrier",
"SenderPlatformName": "XYZ System",
"ReceiverName": "ABC Tech Partner",
"CreationDateTime": "2020-03-27T21:56:36.2619791Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "1010",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87700",
"MasterAgreementNumber": "M009-87700",
"CarrierID": "1234"
},
"EmployerName": "Supermarket GoodTimes",
"EmployerAddress": {
"FirstLineAddress": "1234 Food Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998-70-4567",
"EmployeeIdentifier": "CC.1",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1897-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "7412 Sweat Shop Lane",
"CityName": "Ada",
"StateProvinceCode": "OK",
"PostalCode": "74820"
},
"EmployeeEmail": "DonQ@sweatshops.com",
"EmployeeAlternateEmail": "DonQ@sweatshops.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2020-04-24",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2020-04-24"
}
},
"Event": {
"EventID": "CCEVT001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "Reinstatement",
"EventDate": "2020-04-24",
"TransactionDate": "2020-04-24"
},
"EmployeeEventID": "EEEVT001",
"Coverage": {
"CoverageID": "COV001",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-08-20",
"CoverageEffectiveDate": "2020-04-24",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "5000",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "2",
"ElectedCoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
}
},
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-08-20"
},
"CoverageEventID": "COVID001"
}
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0",
"EmployeeFormRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. | ||
| EmployeeFormRecordQuantity | int | A count of EmployeeForm records included in the electronic |
| transmission. |
CoverageElection
NewHireCoverageElections
Description
Communicate one or more newly elected coverages for employees and/or dependents as the Employee is going through the New Hire process. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZplatform.com",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "8675309",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": null,
"MasterAgreementNumber": "P678945",
"CarrierID": "U7435"
},
"EmployerName": "SLC Inc.",
"EmployerAddress": {
"FirstLineAddress": "1725 Slough Avenue",
"CityName": "Scranton",
"StateProvinceCode": "PA",
"PostalCode": "50322",
"CountryCode": "USA"
},
"Employee": [
{
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "10000",
"IncomeModeCode": "BiWeekly26PerYear",
"IncomeEffectiveDate": "2018-08-27"
}
},
"Event": {
"EventID": "123",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27"
},
"EmployeeEventID": "123",
"Coverage": [
{
"CoverageID": "2397070",
"IndividualPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000.00",
"BenefitEarningsEffectiveDate": "2019-09-01",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "123"
},
{
"CoverageID": "2397071",
"IndividualPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000.00",
"BenefitEarningsEffectiveDate": "2019-09-01",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "123",
"CoverageTransactionDate": "2019-08-29"
},
{
"CoverageID": "2397072",
"IndividualPolicyNumber": "P123346",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "BlueCross Hospital",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "10000.00",
"BenefitEarningsEffectiveDate": "2019-09-01",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "123",
"CoverageTransactionDate": "2019-08-29"
}
]
},
{
"EmployeePartyID": "35",
"EmployeeSocialSecurityNumber": "999-70-0423",
"EmployeeIdentifier": "32",
"EmployeeName": {
"FirstName": "Tracey",
"LastName": "Horne"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2001-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8006257897",
"EmployeeWorkPhone": "4061234567",
"EmployeeMobilePhone": "8006257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "9 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "9 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "t.horne@homeemail.com",
"EmployeeAlternateEmail": "t.horne@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-06-27",
"MostRecentHireDate": "2018-06-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Custodial Engineer",
"OccupationText": "Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "90000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1235",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27",
"TransactionDate": "2018-08-27"
},
"EmployeeEventID": "NHEVT1235",
"Coverage": {
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "35",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1235",
"CoverageTransactionDate": "2018-08-27"
}
},
{
"EmployeePartyID": "25",
"EmployeeSocialSecurityNumber": "888-70-0423",
"EmployeeIdentifier": "22",
"EmployeeName": {
"FirstName": "Janet",
"LastName": "Johnson"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-10",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005288897",
"EmployeeWorkPhone": "4051238887",
"EmployeeMobilePhone": "8005288897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 James Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 James Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.johnson@homeemail.com",
"EmployeeAlternateEmail": "j.johnson@saltmine.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-05-27",
"MostRecentHireDate": "2018-05-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Custodial Engineer",
"OccupationText": "Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1237",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27",
"TransactionDate": "2018-08-27"
},
"EmployeeEventID": "NHEVT1237",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Roger",
"LastName": "Johnson"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1970-10-01",
"DependentHomePhone": "2153888587",
"DependentWorkPhone": "6328888745",
"DependentMobilePhone": "2014588885",
"DependentMailingAddress": {
"FirstLineAddress": "4 James Blvd",
"SecondLineAddress": "Apt 4",
"ThirdLineAddress": "Box 3",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334",
"CountryCode": "USA"
},
"DependentHomeEmail": "roger@homememail.com",
"DisabilityIndicator": "false",
"StudentStatusCode": "PartTime",
"DependentTobaccoUseCode": "N"
},
"Coverage": [
{
"CoverageID": "2397088",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "25",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1337"
},
{
"CoverageID": "2397088",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "10000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "2.21",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "2.21",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1337"
},
{
"CoverageID": "2397078",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "0",
"TakeOverCoverageIndicator": "0",
"BeneficiaryGroupID": "1773200",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "25",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2237"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "15000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.00",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.00",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"BeneficiaryGroupID": "1773200",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2237"
}
]
},
{
"EmployeePartyID": "105",
"EmployeeSocialSecurityNumber": "998-70-777",
"EmployeeIdentifier": "992",
"EmployeeName": {
"FirstName": "Amanda",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2002-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257777",
"EmployeeWorkPhone": "4051234667",
"EmployeeMobilePhone": "8005257557",
"EmployeeMailingAddress": {
"FirstLineAddress": "12 10th Ave",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "12 10th Ave",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "amandabaldwin@homeemail.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Custodial Engineer",
"OccupationText": "Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1239",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27",
"TransactionDate": "2018-08-27"
},
"EmployeeEventID": "NHEVT1239",
"Coverage": [
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "50000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1339",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "23970799",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2239",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "239707888",
"GroupPolicyNumber": "P123346",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "105",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2239",
"CoverageTransactionDate": "2018-08-27"
}
]
},
{
"EmployeePartyID": "225",
"EmployeeSocialSecurityNumber": "118-10-0423",
"EmployeeIdentifier": "2225",
"EmployeeName": {
"FirstName": "Cupid",
"LastName": "Valentine"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "20020-02-10",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "80066657897",
"EmployeeWorkPhone": "4051987567",
"EmployeeMobilePhone": "8002527897",
"EmployeeMailingAddress": {
"FirstLineAddress": "P.O. Box 999",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "99 Cupid Lane",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "cupidvalentine@homeemail.com",
"EmployeeAlternateEmail": "c.valentine@saltmine.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-05-27",
"MostRecentHireDate": "2018-05-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1255",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27",
"TransactionDate": "2018-08-27"
},
"EmployeeEventID": "NHEVT1255",
"Coverage": [
{
"CoverageID": "239709999",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "50000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1255",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "2397071999",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1255",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P123346",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-09-01",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "225",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1255",
"CoverageTransactionDate": "2018-08-27"
}
]
},
{
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998704567",
"EmployeeIdentifier": "91023",
"EmployeeName": {
"FirstName": "Don",
"LastName": "Quixote"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1987-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "412 Calle Violete",
"CityName": "Alcala De Henares",
"StateProvinceCode": "OK",
"PostalCode": "74135"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "DonQuixote@homeemail.com",
"EmployeeAlternateEmail": "DonQ@saltmine.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-07-20",
"MostRecentHireDate": "2019-07-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "PartTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Spanish Cultural Teacher",
"OccupationText": "Spanish Cultural Teacher",
"WorkHoursQuantity": "20",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "20000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-20"
}
},
"Event": {
"EventID": "NHEVT111",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2019-07-24",
"TransactionDate": "2019-07-24"
},
"EmployeeEventID": "NHEVT111",
"Dependent": [
{
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Billy",
"LastName": "Idol"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1957-02-23",
"DependentHomePhone": "9183893348",
"DependentMailingAddress": {
"FirstLineAddress": "29 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"DependentHomeEmail": "bill.idol@gmail.com",
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "1522223",
"DependentSocialSecurityNumber": "997-87-8747",
"DependentName": {
"FirstName": "Jose",
"LastName": "Cuervo"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "1958-03-21",
"DependentHomePhone": "9183893348",
"DependentMailingAddress": {
"FirstLineAddress": "29 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"DependentHomeEmail": "jose.c@aol.com",
"DisabilityIndicator": "false"
}
],
"Coverage": {
"CoverageID": "2397070",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2019-07-23",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "5000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "1.18",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "1.18",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "U7435",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "8000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "2.28",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "2.28",
"ElectedCoverageInsured": [
{
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "1522223",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
}
]
},
"CoverageInsured": [
{
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "1522223",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
}
],
"CoverageEventID": "NHEVT111",
"CoverageTransactionDate": "2019-07-24"
}
}
]
},
"Audit": {
"AuditID": "2019-08-12-11.36.42.895000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "6",
"DependentRecordQuantity": "4",
"EventRecordQuantity": "5",
"CoverageRecordQuantity": "15"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitEarningsEffectiveDate | date | Commencement date of the change of the employees earnings. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| SecondLineAddress | string | The second line of a formatted address - e.g., Apartment #, Suite #, |
| etc. | ||
| ThirdLineAddress | string | The third line of a formatted address that is sometimes used for things |
| like care of. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
Open Enrollment Coverage Elections
Description
Communicate one or more elected coverages for employees and/or dependents as the Employee is going through the open (annual) enrollment process. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "c9fcc147-2b65-48cb-925c-9f898a381815",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2019-07-23T21:56:36.2619791Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "1234",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "9999",
"FederalEmployerIdentificationNumber": "99-9999999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "AS-M009-87788",
"MasterAgreementNumber": "M009-87788",
"CarrierID": "1234"
},
"EmployerName": "Sweet Insurance 4 U",
"EmployerAddress": {
"FirstLineAddress": "3345 East 45th Street",
"CityName": "Oklahoma City",
"StateProvinceCode": "OK",
"PostalCode": "73112"
},
"Employee": {
"EmployeePartyID": "45",
"EmployeeSocialSecurityNumber": "998-70-0423",
"EmployeeIdentifier": "42",
"EmployeeName": {
"FirstName": "Sylvia",
"LastName": "Baldwin"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "2000-02-08",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "s.baldwin@saltmine.com",
"EmployeeAlternateEmail": "s.baldwin@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2018-08-27",
"MostRecentHireDate": "2018-08-27",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "100000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "NewHireEnrollment",
"EventDate": "2018-08-27",
"TransactionDate": "2018-08-27"
},
"EmployeeEventID": "NHEVT1234",
"Coverage": [
{
"CoverageID": "2397070",
"GroupPolicyNumber": "P123344",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "BlueCross BlueShield Life",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "50000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1334",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "2397071",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "BlueCross CI",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2234",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "2397072",
"GroupPolicyNumber": "P123346",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "BlueCross Hospital",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"ElectedCoverage": {
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "20000",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedTotalPlanPremiumAmount": "3.31",
"ElectedCoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-09-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT2234",
"CoverageTransactionDate": "2018-08-27"
},
{
"CoverageID": "2397074",
"GroupPolicyNumber": "P123345",
"ProductTypeCode": "LifestyleBenefits",
"BenefitPlanIdentifier": "LEG123",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-09-01",
"CoverageEffectiveDate": "2019-09-01",
"CoverageTierCode": "Employee",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "1234",
"CoverageInsured": {
"InsuredPartyID": "45",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-09-01"
},
"CoverageEventID": "NHEVT1334",
"CoverageTransactionDate": "2019-08-27"
}
]
}
},
"Audit": {
"AuditID": "Audit1234",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "4",
"CoverageRiderRecordQuantity": "0"
}
}
}
Coverage Election due to Qualifying Life Event
Description
Communicate one or more newly elected coverages for employees and/or dependents as the Employee is going through the qualifying life event process including (but not limited to): Marriage, Divorce, and Birth. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9999106c-c731-466a-8235-3377985285yz",
"SenderName": "XYZ Benefit Administrator",
"SenderPlatformName": "XYZplatform.com",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2001-12-17T09:30:47Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "U7435",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "80122606",
"MasterAgreementNumber": "80122606",
"CarrierID": "80122606"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1772669",
"EmployeeSocialSecurityNumber": "998701592",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Hannah",
"LastName": "Holley"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1984-05-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017589472",
"EmployeeWorkPhone": "6019142649",
"EmployeeMobilePhone": "6012189602",
"EmployeeMailingAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "5 Pennsylvania Rd",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "hannah.holley@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse II",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2017-08-18"
}
},
"Event": {
"EventID": "98765",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "Marriage",
"EventDate": "2019-03-22"
},
"EmployeeEventID": "98765",
"Dependent": [
{
"DependentPartyID": "177266901",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1985-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "177266902",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "Holley"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2015-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "1112233",
"Beneficiary": {
"BeneficiaryPartyID": "41263918",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397498",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "177266901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "177266902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765"
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397502",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "177266901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765"
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "177266902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeFamily",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "177266901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "177266902",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": [
{
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "177266901",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "tbd",
"IndividualPolicyNumber": "tbd",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "tbd",
"BenefitClassIdentifier": "tbd",
"BenefitSubClassIdentifier": "tbd",
"OriginalCoverageEffectiveDate": "2019-04-01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeSpouse",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "tbd",
"BeneficiaryGroupID": "tbd",
"CarrierID": "U7435",
"CoverageInsured": {
"InsuredPartyID": "1772669",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageEventID": "98765",
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
}
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "2",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "12",
"CoverageRiderRecordQuantity": "0"
}
}
}
CoverageTermination
Open Enrollment Coverage Terminations
Description
Communicate one or more coverage terminations for employees and/or dependents as the Employee is going through an open (annual) enrollment. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-05-15-11.36.42.895000",
"SenderName": "ADPSLC",
"SenderPlatformName": "CES 6.2",
"ReceiverName": "MYCARRIER",
"CreationDateTime": "2020-05-15T11:36:42",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "MYCARRIER_ID",
"CarrierName": "MYCARRIER"
},
"Employer": {
"EmployerPartyID": "PARTYID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "INT-123456",
"CarrierID": "MYCARRIER_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": [
{
"EmployeePartyID": "123456",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "916061",
"EmployeeName": {
"FirstName": "COOPER",
"MiddleName": "D",
"LastName": "HERNANDEZ"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1992-06-13",
"MaritalStatusCode": "Single",
"EmployeeHomePhone": "6830001234",
"EmployeeMailingAddress": {
"FirstLineAddress": "2409 Main Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeAlternateEmail": "cooper.hernandez@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-13",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "43680.00",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": {
"EventID": "E916061O001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "VoluntaryCancel",
"EventDate": "2020-05-15"
},
"Coverage": {
"CoverageID": "O001",
"GroupPolicyNumber": "R1234567",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "815",
"CoverageEffectiveDate": "2019-07-01",
"CoverageTerminationDate": "2020-05-15",
"CoverageTierCode": "Employee",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "32.53",
"TotalPlanPremiumAmount": "32.53",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "12",
"CarrierID": "MYCARRIER_ID",
"CoverageInsured": {
"InsuredPartyID": "123456",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-07-01",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "E916061O001",
"CoverageTransactionDate": "2020-06-01"
}
},
{
"EmployeePartyID": "123457",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "916062",
"EmployeeName": {
"FirstName": "JOHNSON",
"MiddleName": "D",
"LastName": "JAMES"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1992-08-12",
"MaritalStatusCode": "Single",
"EmployeeHomePhone": "6830009999",
"EmployeeMailingAddress": {
"FirstLineAddress": "48 West Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeAlternateEmail": "johnson.james@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-13",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "43680.00",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": {
"EventID": "E916061Q009",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "Cancellation",
"EventDate": "2020-05-15"
},
"Coverage": {
"CoverageID": "Q002",
"GroupPolicyNumber": "R1234567",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "796",
"CoverageEffectiveDate": "2019-07-01",
"CoverageTerminationDate": "2020-05-31",
"BenefitAmount": "20000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "9.80",
"TotalPlanPremiumAmount": "9.80",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "12",
"CarrierID": "MYCARRIER_ID",
"CoverageInsured": {
"InsuredPartyID": "123457",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-07-01",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "E916061Q009",
"CoverageTransactionDate": "2020-06-01"
}
},
{
"EmployeePartyID": "916063",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "123458",
"EmployeeName": {
"FirstName": "Miller",
"MiddleName": "T",
"LastName": "Bob"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1970-06-13",
"MaritalStatusCode": "Single",
"EmployeeHomePhone": "6835554444",
"EmployeeMailingAddress": {
"FirstLineAddress": "89 East Main Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeAlternateEmail": "bob.miller@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-14",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "43680.00",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": {
"EventID": "E916061O099",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "ChildNoLongerEligible",
"EventDate": "2020-05-15"
},
"EmployeeEventID": "E916061O099",
"Dependent": [
{
"DependentPartyID": "111111111",
"DependentSocialSecurityNumber": "100020000",
"DependentIdentifier": "00001",
"DependentName": {
"FirstName": "Peggy",
"LastName": "Miller"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1976-09-16",
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "111121111",
"DependentSocialSecurityNumber": "111121111",
"DependentIdentifier": "00002",
"DependentName": {
"FirstName": "Penny",
"LastName": "Miller"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2013-05-08",
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "111131111",
"DependentSocialSecurityNumber": "111131111",
"DependentIdentifier": "00003",
"DependentName": {
"FirstName": "Corey",
"LastName": "Miller"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "1994-06-11",
"DisabilityIndicator": "false",
"DependentEventID": "E916061O099"
}
],
"Coverage": {
"CoverageID": "O001",
"GroupPolicyNumber": "R1234567",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "815",
"CoverageEffectiveDate": "2019-07-01",
"CoverageTierCode": "EmployeeFamily",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "32.53",
"TotalPlanPremiumAmount": "32.53",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "12",
"CarrierID": "MYCARRIER_ID",
"CoverageInsured": [
{
"InsuredPartyID": "916063",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-07-01"
},
{
"InsuredPartyID": "111111111",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01"
},
{
"InsuredPartyID": "111121111",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01"
},
{
"InsuredPartyID": "111131111",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01",
"InsuredCoverageTerminationDate": "2020-05-31"
}
],
"CoverageEventID": "E916061O099",
"CoverageTransactionDate": "2020-06-01"
}
},
{
"EmployeePartyID": "1772641",
"EmployeeSocialSecurityNumber": "998700290",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"FirstName": "Nina",
"LastName": "McCain"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1974-10-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017588466",
"EmployeeWorkPhone": "6019145568",
"EmployeeMobilePhone": "6012183447",
"EmployeeMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898"
},
"EmployeeEmail": "Nina.McCain@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"MostRecentHireDate": "2017-08-18",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Assistant Director of Nursing",
"OccupationText": "Assistant Director of Nursing",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "60000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": [
{
"EventID": "EE735236",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "VoluntaryCancel",
"EventDate": "2020-05-15"
},
{
"EventID": "EE735999",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "LossOfSpousesBenefitEligibility",
"EventDate": "2020-05-15"
}
],
"Dependent": {
"DependentPartyID": "1772642",
"DependentSocialSecurityNumber": "998763918",
"DependentName": {
"FirstName": "Ken",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1965-09-28",
"DependentEventID": "EE735999"
},
"Coverage": [
{
"CoverageID": "1111111",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VOLLIFE",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": null,
"BillGroupIdentifier": "101",
"BillSubGroupIdentifier": "765",
"CoverageEffectiveDate": "2019-06-01",
"CoverageTerminationDate": "2020-05-31",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000.00",
"BenefitFactor": "0",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "9.83",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "9.83",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "MYCARRIER_ID",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "100000.00",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "19.66",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "19.66",
"ElectedCoverageInsured": {
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
}
},
"CoverageInsured": {
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "EE735236",
"CoverageTransactionDate": "2020-06-01"
},
{
"CoverageID": "2222222",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "SPLIFE",
"BenefitClassIdentifier": "02",
"BillGroupIdentifier": "101",
"BillSubGroupIdentifier": "766",
"CoverageEffectiveDate": "2019-04-05",
"CoverageTerminationDate": "2020-05-31",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "10000.00",
"BenefitFactor": "0",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "8.72",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "8.72",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "true",
"CarrierID": "9803",
"ElectedCoverage": {
"ElectedCoverageTierCode": "SpouseOnly",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "200000.00",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "17.44",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "17.44",
"ElectedCoverageInsured": {
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
}
},
"CoverageInsured": {
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "EE735999",
"CoverageTransactionDate": "2020-06-01"
}
]
}
]
},
"Audit": {
"AuditID": "2020-05-15-11.36.42.895000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "5",
"DependentRecordQuantity": "4",
"EventRecordQuantity": "7",
"CoverageRecordQuantity": "5"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| BillSubGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing sort |
| group/department. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| BillSubGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing sort |
| group/department. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
QLEPerpetualEnrollmentCoverageTerminations
Description
Communicate one or more coverage terminations for employees and/or dependents as the Employee is going through either a qualifying life event and/or a perpetual enrollment process. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| BillSubGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing sort |
| group/department. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| BillSubGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing sort |
| group/department. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageTransactionDate | date | The date the X coverage for Y benefit was entered into the Ben Admin |
| platform (e.g., I entered an enrollment for Spouse Life on 11/12 into the Ben Admin | ||
| system or my administrator added my requested Life benefits on 11/21 into the Ben Admin | ||
| platform). | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "2020-05-15-11.36.42.895000",
"SenderName": "XYZ Tech Company",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "MYCARRIER",
"CreationDateTime": "2020-05-15T11:36:42",
"TestProductionCode": "Test",
"TransmissionTypeCode": "FullFile",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "MYCARRIER_ID",
"CarrierName": "MYCARRIER"
},
"Employer": {
"EmployerPartyID": "PARTYID",
"FederalEmployerIdentificationNumber": "12-3456789",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "TBD",
"MasterAgreementNumber": "INT-123456",
"CarrierID": "MYCARRIER_ID"
},
"EmployerName": "My Employer",
"EmployerAddress": {
"FirstLineAddress": "24490 Eureka Ave",
"CityName": "Warren",
"StateProvinceCode": "MI",
"PostalCode": "48091",
"CountryCode": "US"
},
"Employee": [
{
"EmployeePartyID": "991951",
"EmployeeSocialSecurityNumber": "111101111",
"EmployeeIdentifier": "9168971",
"EmployeeName": {
"FirstName": "DAVID",
"MiddleName": "D",
"LastName": "HERNANDEZ"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1992-06-13",
"MaritalStatusCode": "Divorced",
"EmployeeHomePhone": "6830001234",
"EmployeeMailingAddress": {
"FirstLineAddress": "2425 Main Street",
"CityName": "TALAHASSEE",
"StateProvinceCode": "FL",
"PostalCode": "33844",
"CountryCode": "US"
},
"EmployeeEmail": "cooper.hernandez@myemployer.com",
"EmploymentInformation": {
"OriginalHireDate": "2016-06-13",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"EmploymentIncome": {
"IncomeTypeCode": "Salary",
"IncomeAmount": "43680.00",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": [
{
"EventID": "E916998",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DivorceLegalSeparation",
"EventDate": "2020-05-15"
},
{
"EventID": "E916998001",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "QualifyingLifeEventEnrollment",
"EventDate": "2020-05-15"
}
],
"EmployeeEventID": "E916998",
"Dependent": [
{
"DependentPartyID": "111111997",
"DependentSocialSecurityNumber": "100020007",
"DependentIdentifier": "00091",
"DependentName": {
"FirstName": "JANET",
"LastName": "HERNANDEZ"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1986-09-16",
"DisabilityIndicator": "false",
"DependentEventID": "E916998"
},
{
"DependentPartyID": "111121998",
"DependentSocialSecurityNumber": "111121119",
"DependentIdentifier": "00092",
"DependentName": {
"FirstName": "SHERRY",
"LastName": "HERNANDEZ"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2013-05-08",
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "111131999",
"DependentSocialSecurityNumber": "111131119",
"DependentIdentifier": "00093",
"DependentName": {
"FirstName": "MARTIN",
"LastName": "HERNANDEZ"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "2007-11-11",
"DisabilityIndicator": "false"
}
],
"Coverage": {
"CoverageID": "O001",
"GroupPolicyNumber": "R1234567",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "815",
"CoverageEffectiveDate": "2019-07-01",
"CoverageTierCode": "EmployeeFamily",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "32.53",
"TotalPlanPremiumAmount": "32.53",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "12",
"CarrierID": "MYCARRIER_ID",
"CoverageInsured": [
{
"InsuredPartyID": "991951",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-07-01"
},
{
"InsuredPartyID": "111111997",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01",
"InsuredCoverageTerminationDate": "2020-05-31"
},
{
"InsuredPartyID": "111121998",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01"
},
{
"InsuredPartyID": "111131999",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-01"
}
],
"CoverageEventID": "E916998001",
"CoverageTransactionDate": "2020-06-01"
}
},
{
"EmployeePartyID": "1772641",
"EmployeeSocialSecurityNumber": "998700290",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"FirstName": "Nina",
"LastName": "McCain"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1974-10-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017588466",
"EmployeeWorkPhone": "6019145568",
"EmployeeMobilePhone": "6012183447",
"EmployeeMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898"
},
"EmployeeEmail": "Nina.McCain@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"MostRecentHireDate": "2017-08-18",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Assistant Director of Nursing",
"OccupationText": "Assistant Director of Nursing",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "60000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2018-04-01"
}
},
"Event": {
"EventID": "EE735236",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "VoluntaryCancel",
"EventDate": "2020-05-15"
},
"Dependent": {
"DependentPartyID": "1772642",
"DependentSocialSecurityNumber": "998763918",
"DependentName": {
"FirstName": "Ken",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1965-09-28"
},
"Coverage": [
{
"CoverageID": "1111111",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VOLLIFE",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": null,
"BillGroupIdentifier": "101",
"BillSubGroupIdentifier": "765",
"CoverageEffectiveDate": "2019-06-01",
"CoverageTerminationDate": "2020-05-31",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000.00",
"BenefitFactor": "0",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "9.83",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "9.83",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "true",
"TakeOverCoverageIndicator": "true",
"CarrierID": "MYCARRIER_ID",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "100000.00",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "19.66",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "19.66",
"ElectedCoverageInsured": {
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
}
},
"CoverageInsured": {
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "EE735236",
"CoverageTransactionDate": "2020-06-01"
},
{
"CoverageID": "2222222",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "SPLIFE",
"BenefitClassIdentifier": "02",
"BillGroupIdentifier": "101",
"BillSubGroupIdentifier": "766",
"CoverageEffectiveDate": "2019-04-05",
"CoverageTerminationDate": "2020-05-31",
"CoverageTierCode": "SpouseOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "10000.00",
"BenefitFactor": "0",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "8.72",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "8.72",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "true",
"CarrierID": "9803",
"ElectedCoverage": {
"ElectedCoverageTierCode": "SpouseOnly",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "200000.00",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "17.44",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "17.44",
"ElectedCoverageInsured": {
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
}
},
"CoverageInsured": {
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-05",
"InsuredCoverageTerminationDate": "2020-05-31"
},
"CoverageEventID": "EE735236",
"CoverageTransactionDate": "2020-06-01"
}
]
}
]
},
"Audit": {
"AuditID": "2020-05-15-11.36.42.895000",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "2",
"DependentRecordQuantity": "4",
"EventRecordQuantity": "3",
"CoverageRecordQuantity": "3"
}
}
}
FormsManagement
EmbeddedForm
Description
Communicate a binary form to Carrier during the Benefits Enrollment process. The embedded form may or may not require a signature from an Employee, Dependent, or Producer.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "e95bfeb4-b6b0-4de1-8016-869aa3decb00",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-04-28T21:41:45.3913574Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "6",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "16901",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "6",
"MasterAgreementNumber": null,
"CarrierID": "6"
},
"EmployerName": "DEMO",
"EmployerAddress": {
"FirstLineAddress": "400 Field Drive",
"CityName": "Lake Forest",
"StateProvinceCode": "IL",
"PostalCode": "60045",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "71867949",
"EmployeeSocialSecurityNumber": "251132064",
"EmployeeIdentifier": "106943",
"EmployeeName": {
"FirstName": "Catherine",
"MiddleName": "T",
"LastName": "Adams"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1972-12-29",
"MaritalStatusCode": "Married",
"EmployeeMobilePhone": "8642280057",
"EmployeeMailingAddress": {
"FirstLineAddress": "711 East Curtis Street",
"CityName": "Simpsonville",
"StateProvinceCode": "SC",
"PostalCode": "29681",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "711 East Curtis Street",
"CityName": "Simpsonville",
"StateProvinceCode": "SC",
"PostalCode": "29681",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "301 Camperdown Way",
"CityName": "Greenville",
"StateProvinceCode": "SC",
"PostalCode": "29602",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2001-08-07",
"MostRecentHireDate": "2001-08-07",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Teacher- Gifted/Talented",
"OccupationText": "Teacher- Gifted/Talented",
"WorkHoursQuantity": "38",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Greenville County School District",
"PayrollDeductionFrequencyQuantity": "24",
"PayrollFrequencyQuantity": "24",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "62728.5",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2001-08-07"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "62728.5",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2001-08-07"
}
]
},
"EnrollmentInformation": {
"EnrollmentInformationID": "151337554",
"EnrollmentMethodCode": "Paper"
},
"Event": {
"EventID": "CE92496404",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-04-28",
"TransactionDate": "2020-04-28"
},
"Dependent": {
"DependentPartyID": "71867950",
"DependentSocialSecurityNumber": null,
"DependentName": {
"FirstName": "BRIAN",
"MiddleName": "A",
"LastName": "ADAMS"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1971-02-19"
},
"Producer": {
"ProducerPartyID": "15",
"ProducerFirstName": "Lyle",
"ProducerLastName": "Griffin",
"CarrierProducerNumber": {
"CarrierProducerNumberID": "6_15",
"CarrierID": "6",
"CarrierProducerNumber": "TMKLNG"
}
},
"Coverage": [
{
"CoverageID": "78956285",
"IndividualPolicyNumber": "S38117",
"ProductTypeCode": "STD",
"BillGroupIdentifier": "1300000000",
"OriginalCoverageEffectiveDate": "2012-02-01",
"CoverageEffectiveDate": "2020-05-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2700",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "24.96",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "24.96",
"PremiumModeQuantity": "24",
"PreTaxCode": "PostTax",
"CarrierID": "6",
"CoverageInsured": {
"InsuredPartyID": "71867949",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2012-02-01"
},
"CoverageEventID": "CE92496404",
"CoverageQuestionAnswer": [
{
"CoverageQuestionAnswerID": "218255073",
"QuestionIdentifier": "D_902_Occupational_Class",
"AnswerText": "3A",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255074",
"QuestionIdentifier": "PDIP_Job_Title",
"AnswerText": "Teacher- Gifted/Talented",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255078",
"QuestionIdentifier": "TMK_Enrollment_City",
"AnswerText": "Simpsonville",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255079",
"QuestionIdentifier": "D_902_Hours",
"AnswerText": "38.0000",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255080",
"QuestionIdentifier": "D902_Duties",
"AnswerText": "Educator",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255081",
"QuestionIdentifier": "D902_ActivelyAtWork",
"AnswerIndicator": "true",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255084",
"QuestionIdentifier": "TMK_Enrollment_State",
"AnswerText": "SC",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255085",
"QuestionIdentifier": "D902_Underwriting_Type",
"AnswerText": "MGI",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255086",
"QuestionIdentifier": "D902_MissedWork",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255087",
"QuestionIdentifier": "D902_Alcohol",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255088",
"QuestionIdentifier": "D902_Diabetes",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255089",
"QuestionIdentifier": "D902_Back",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255090",
"QuestionIdentifier": "D902_Knee",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255091",
"QuestionIdentifier": "DI_UnderwritingType",
"AnswerText": "MGI",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255092",
"QuestionIdentifier": "TMK_BRAFU",
"AnswerText": "SC",
"AnswerPartyID": "71867949"
}
],
"CoverageRider": {
"CoverageRiderID": "361864850",
"RiderIdentifier": "IC",
"EmployeePremiumContributionAmount": "1.68",
"EmployerPremiumContributionAmount": "0"
}
},
{
"CoverageID": "78394050",
"IndividualPolicyNumber": "JQ2919",
"ProductTypeCode": "CriticalIllness",
"BillGroupIdentifier": "1300000000",
"CoverageEffectiveDate": "2006-08-01",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "52712",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "43.39",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "43.39",
"PremiumModeQuantity": "24",
"PreTaxCode": "PostTax",
"CarrierID": "6",
"CoverageInsured": [
{
"InsuredPartyID": "71867950",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2006-08-01"
},
{
"InsuredPartyID": "71867949",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2006-08-01"
}
],
"CoverageRider": [
{
"CoverageRiderID": "359987888",
"RiderIdentifier": "PLAN_CODE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "CBO"
},
{
"CoverageRiderID": "359987889",
"RiderIdentifier": "RateBlend",
"CoverageTierCode": "Employee",
"BenefitAmount": "1",
"RiderUnitQuantity": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "359987890",
"RiderIdentifier": "PersistencyFactor",
"CoverageTierCode": "Employee",
"BenefitAmount": "1",
"RiderUnitQuantity": "1",
"RiderOptionIdentifier": "1.1"
},
{
"CoverageRiderID": "359987891",
"RiderIdentifier": "SpouseCoverage",
"CoverageTierCode": "SpouseOnly",
"BenefitAmount": "100",
"RiderUnitQuantity": "100",
"RiderOptionIdentifier": "100"
},
{
"CoverageRiderID": "359987892",
"RiderIdentifier": "ChildCoverage",
"CoverageTierCode": "ChildOnly",
"BenefitAmount": "100",
"RiderUnitQuantity": "100",
"RiderOptionIdentifier": "100"
},
{
"CoverageRiderID": "359987893",
"RiderIdentifier": "ISSUE_STATE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "SC"
},
{
"CoverageRiderID": "359987894",
"RiderIdentifier": "ISSUE_TYPE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "ST"
},
{
"CoverageRiderID": "359987895",
"RiderIdentifier": "EZVFP",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "Y"
},
{
"CoverageRiderID": "359987896",
"RiderIdentifier": "EZ_VALUE_YEAR",
"CoverageTierCode": "Employee",
"BenefitAmount": "2007",
"RiderUnitQuantity": "2007",
"RiderOptionIdentifier": "2007"
},
{
"CoverageRiderID": "359987897",
"RiderIdentifier": "EZV_STATUS",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "M"
},
{
"CoverageRiderID": "359987898",
"RiderIdentifier": "INFORCE_PRF",
"CoverageTierCode": "Employee",
"BenefitAmount": "1.1",
"RiderOptionIdentifier": "1.1"
},
{
"CoverageRiderID": "359987899",
"RiderIdentifier": "HSB",
"CoverageTierCode": "Employee",
"BenefitAmount": "100",
"RiderUnitQuantity": "100"
}
]
}
],
"EmployeeForm": [
{
"FormID": "11112876",
"FormName": "Notice of Information Practices",
"FormNumber": "1011143",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Other",
"FormDataTypeCode": "PDF",
"FormData": "JVBERi0xLjQKJb662+4KMSAwIG9iago8PC9NZXRhZGF0YSAyIDAgUi9QYWdlcyAzIDAgUi9UeXBlIC9DYXRhbG9nL1ZpZXdlclByZWZlcmVuY2VzIDw8L0RpcmVjdGlvbiAvTDJSPj4+PgplbmRvYmoKMiAwIG9iago8PC9MZW5ndGggNDUwMC9TdWJ0eXBlIC9YTUwvVHlwZSAvTWV0YWRhdGE+PgpzdHJlYW0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4NCjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iPg0KICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyI+DQogICAgICA8eG1wTU06SW5zdGFuY2VJRD51dWlkOjNlODJhNTU1LWU1OTEtY2E0MC05YzNhLTc0ZmJlZjY2Njc1ZTwveG1wTU06SW5zdGFuY2VJRD4NCiAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6aW5kZDpjY2UxNTczYS1kNjliLTExZGYtYjNjMi1mOGUyMmVmNzA2YTY8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4NCiAgICAgIDx4bXBNTTpEb2N1bWVudElEPnhtcC5pZDozZmY5ZDY4MC1hMDhlLTQ4OWQtYTc4OS1hYmY1ODBjMDRiMDk8L3htcE1NOkRvY3VtZW50SUQ+DQogICAgICA8eG1wTU06UmVuZGl0aW9uQ2xhc3M+cHJvb2Y6cGRmPC94bXBNTTpSZW5kaXRpb25DbGFzcz4NCiAgICAgIDx4bXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgIDxzdFJlZjppbnN0YW5jZUlEPnhtcC5paWQ6NzVlZTZiNzMtMmIxZi00OWE4LWFmM2QtOTBkYjdmMjMzMWMzPC9zdFJlZjppbnN0YW5jZUlEPg0KICAgICAgICA8c3RSZWY6ZG9jdW1lbnRJRD54bXAuZGlkOjBmZTM4MDFkLWMyODgtNDQyNC1hZjFiLTJjOWExY2RkNWRlNTwvc3RSZWY6ZG9jdW1lbnRJRD4NCiAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD5hZG9iZTpkb2NpZDppbmRkOmNjZTE1NzNhLWQ2OWItMTFkZi1iM2MyLWY4ZTIyZWY3MDZhNjwvc3RSZWY6b3JpZ2luYWxEb2N1bWVudElEPg0KICAgICAgICA8c3RSZWY6cmVuZGl0aW9uQ2xhc3M+ZGVmYXVsdDwvc3RSZWY6cmVuZGl0aW9uQ2xhc3M+DQogICAgICA8L3htcE1NOkRlcml2ZWRGcm9tPg0KICAgICAgPHhtcE1NOkhpc3Rvcnk+DQogICAgICAgIDxyZGY6U2VxPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4NCiAgICAgICAgICAgIDxzdEV2dDpwYXJhbWV0ZXJzPmZyb20gYXBwbGljYXRpb24veC1pbmRlc2lnbiB0byBhcHBsaWNhdGlvbi9wZGY8L3N0RXZ0OnBhcmFtZXRlcnM+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiBDQyAyMDE1IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50Pg0KICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMTItMTRUMTU6NDM6NTUtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgIDwvcmRmOlNlcT4NCiAgICAgIDwveG1wTU06SGlzdG9yeT4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPg0KICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MDQrMDA6MDA8L3htcDpDcmVhdGVEYXRlPg0KICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MDQtLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4NCiAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MDQtLTA1OjAwPC94bXA6TWV0YWRhdGFEYXRlPg0KICAgICAgPHhtcDpDcmVhdG9yVG9vbD5CaXRNaXJhY2xlLkRvY290aWMuUGRmIDUuNy45MjMxPC94bXA6Q3JlYXRvclRvb2w+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj4NCiAgICAgIDxkYzpmb3JtYXQ+YXBwbGljYXRpb24vcGRmPC9kYzpmb3JtYXQ+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6cGRmPSJodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvIj4NCiAgICAgIDxwZGY6UHJvZHVjZXI+QWRvYmUgUERGIExpYnJhcnkgMTUuMDwvcGRmOlByb2R1Y2VyPg0KICAgICAgPHBkZjpUcmFwcGVkPkZhbHNlPC9wZGY6VHJhcHBlZD4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgPC9yZGY6UkRGPg0KPC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg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L0ZpcnN0Q2hhciAzMi9Gb250RGVzY3JpcHRvciAxNSAwIFIvTGFzdENoYXIgMTE4L1N1YnR5cGUgL1RydWVUeXBlL1RvVW5pY29kZSAxNiAwIFIvVHlwZSAvRm9udC9XaWR0aHMgWyAyNzggMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAyNzggMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCA3MjIgMCA3MjIgMCAwIDAgMCAyNzggMCAwIDAgODMzIDcyMiAwIDY2NyAwIDAgMCA2MTEgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgNTU2IDAgNTU2IDYxMSA1NTYgMzMzIDAgNjExIDI3OCAwIDAgMjc4IDg4OSA2MTEgNjExIDYxMSAwIDM4OSA1NTYgMzMzIDYxMSA1NTYgXT4+CmVuZG9iagoxMCAwIG9iago8PC9CYXNlRm9udCAvU0RES1NXK0hlbHZldGljYS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nL0ZpcnN0Q2hhciAzMi9Gb250RGVzY3JpcHRvciAxNyAwIFIvTGFzdENoYXIgMTIyL1N1YnR5cGUgL1RydWVUeXBlL1RvVW5pY29kZSAxOCAwIFIvVHlwZSAvRm9udC9XaWR0aHMgWyAyNzggMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDI3OCAzMzMgMjc4IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDY2NyA2NjcgNzIyIDcyMiAwIDYxMSAwIDAgMjc4IDAgMCAwIDgzMyAwIDAgMCAwIDcyMiA2NjcgNjExIDcyMiAwIDk0NCAwIDY2NyAwIDAgMCAwIDAgMCAwIDU1NiA1NTYgNTAwIDU1NiA1NTYgMjc4IDU1NiA1NTYgMjIyIDAgNTAwIDIyMiA4MzMgNTU2IDU1NiA1NTYgNTU2IDMzMyA1MDAgMjc4IDU1NiA1MDAgNzIyIDUwMCA1MDAgNTAwIF0+PgplbmRvYmoKMTEgMCBvYmoKPDwvTWV0YWRhdGEgMTIgMCBSPj4KZW5kb2JqCjEyIDAgb2JqCjw8L0xlbmd0aCAyMjI3L1N1YnR5cGUgL1hNTC9UeXBlIC9NZXRhZGF0YS9GaWx0ZXIgL0ZsYXRlRGVjb2RlPj4Kc3Ry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OxdWlWYtXIs5M8pMKxstpw70urLfqxw95LCocVjZ6JVNHWKnDDtr9EoZvVJGr2w4a/Yy7hnLJ6MrFfx1slh+kmmepDb+1tvTGsvMKDq5jUml+qcAAwBcnjD/CmVuZHN0cmVhbQplbmRvYmoKMjYgMCBvYmoKPDwvQ3JlYXRpb25EYXRlIChEOjIwMjAwNDI4MTY0MjA0KzAwJzAwJykvQ3JlYXRvciAoQml0TWlyYWNsZS5Eb2NvdGljLlBkZiA1LjcuOTIzMSkvUHJvZHVjZXIgKEFkb2JlIFBERiBMaWJyYXJ5IDE1LjApL1RyYXBwZWQgL0ZhbHNlPj4KZW5kb2JqCnhyZWYKMCAyNwowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMTUgMDAwMDAgbg0KMDAwMDAwMDExNCAwMDAwMCBuDQowMDAwMDA0NjkyIDAwMDAwIG4NCjAwMDAwMDQ3NDcgMDAwMDAgbg0KMDAwMDAwNTEwOSAwMDAwMCBuDQowMDAwMDE0ODcwIDAwMDAwIG4NCjAwMDAwMTQ5ODUgMDAwMDAgbg0KMDAwMDAxNTA5OCAwMDAwMCBuDQowMDAwMDE1MjMyIDAwMDAwIG4NCjAwMDAwMTU2NDEgMDAwMDAgbg0KMDAwMDAxNjA4NiAwMDAwMCBuDQowMDAwMDE2MTIzIDAwMDAwIG4NCjAwMDAwMTg0NDkgMDAwMDAgbg0KMDAwMDAxODQ3NiAwMDAwMCBuDQowMDAwMDE4OTgxIDAwMDAwIG4NCjAwMDAwMTkyNDggMDAwMDAgbg0KMDAwMDAxOTY2NyAwMDAwMCBuDQowMDAwMDE5OTI3IDAwMDAwIG4NCjAwMDAwMjA0MTYgMDAwMDAgbg0KMDAwMDA0OTQyMSAwMDAwMCBuDQowMDAwMDc1MDQ5IDAwMDAwIG4NCjAwMDAwNzU0NjIgMDAwMDAgbg0KMDAwMDA3NTUzMyAwMDAwMCBuDQowMDAwMDc1ODA2IDAwMDAwIG4NCjAwMDAwNzU5MDEgMDAwMDAgbg0KMDAwMDA5MTAwOCAwMDAwMCBuDQp0cmFpbGVyCjw8L1NpemUgMjcvUm9vdCAxIDAgUi9JbmZvIDI2IDAgUi9JRCBbIDw5QTNDNkFERDlFQ0M0OEFBOTlGN0E3RUI5MDgyQUZCOT4gPDUyODY4Njc2MDNCMDQzRjc4NzUyRTU2MDg2NkEyNjBEPiBdPj4Kc3RhcnR4cmVmCjkxMTU5CiUlRU9GCg==",
"FormCoverageID": "11112876"
},
{
"FormID": "11112875",
"FormName": "D-902 E Application for Disability Coverage",
"FormNumber": "1002657",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Application",
"FormDataTypeCode": "PDF",
"FormData": "JVBERi0xLjUKJb662+4KMTYgMCBvYmoKPDwvTGluZWFyaXplZCAxL0wgMTY4MTU4L0ggWyAgIDM4NzAgMjU2IF0vTyAyMS9FIDEwNTM3NC9OIDIvVCAxNjc4NTg+PgplbmRvYmoKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCjE3IDAgb2JqCjw8L0xlbmd0aCAzNzMvVHlwZSAvWFJlZi9XIFsgMSAzIDEgXS9JbmRleCBbIDE2IDEzMCBdL0lEIFsgPDJFQjEzNjJGOTBBMDQ4NzA4MTUzOTkxMUZEQTkyRjk0PiA8OENCMEYwRjhCNjAzMTY0MDk0QUFCMDY1MTk5ODc5Mzk+IF0vSW5mbyAxNDUgMCBSL1Jvb3QgMTggMCBSL1NpemUgMTQ2L1ByZXYgMTY3ODU5ICAgICAvRmlsdGVyIC9GbGF0ZURlY29kZT4+CnN0cmVhbQp42h3Qz0vTcRzH8c93ztSV23LTdL9yS206lxVkxgRP7lh5LGKaKzUmyqqR+GPkWKXOH+UmQXQM/4QOQf+DN4WQAumHgt6iQ5eery6P0/v15vV+W8a4jGXMNtg/QnUcXCFwC+8ANG5C03dovgEtFfB9g0ACgusQ+gqtVyBcgsgBtPVDexmiPyHmgLgSlzV39Q/0pqBvDxINYhQGLUiqRnIBbn2G2z9gqBdS92B4Ce5XwWge0lr1cB7GfsNEDh4dQiYNk/swdRemjyH7BB6fwNNZyP2FZ1mY+QWzIzD3BRYeQF7Z53dgcRcKuqOofi/88PIavLoJSxOwXICV91DSJ1d3YO0INuzwWu98cx02h6CcgUoRtpR4+wneOeHDuLEs35GxGeP5jyVsokrYRbU4JWpEragTDnFanBH1wilcwi3OigbhEV7RKJrEOdEsWoRP+EVABEVInBetIiwi4oJoE+2iQ1wUUdEpukRMdIu4uCR6/gFDFU2xCmVuZHN0cmVhbQplbmRvYmoKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKMTggMCBvYmoKPDwvQWNyb0Zvcm0gMTQzIDAgUi9NZXRhZGF0YSAxNCAwIFIvUGFnZXMgOTggMCBSL1R5cGUgL0NhdGFsb2cvVmlld2VyUHJlZmVyZW5jZXMgPDwvRGlyZWN0aW9uIC9MMlI+Pj4+CmVuZG9iagoxOSAwIG9iago8PC9MZW5ndGggMjQ0Ni9UeXBlIC9PYmpTdG0vTiA0OC9GaXJzdCA0MjQvRmlsdGVyIC9GbGF0ZURlY29kZT4+CnN0cmVhbQp42u1ZX2/bOBJ/v0/Bt0uwSESKoiQuFgWcONka1zRBk25vG+SBtmhHqGx59afX3Ke/GYqSaNmJU28PBxwWLSNqODMcDn8czlgyJpRISYKIMEoJ80N4MsICHkDHJ0yGMXQ48X0GbzQgfhhx6AjiSx95QsJpgJQIOkJAJyY8kKCLSsIjVMwo4TEqY4xwidOALi59mIdx6MQwKQuIoKiQCSJ8+MNYCJ0YmSMieICUmIiAIUVCJwKKT4kQAdrNiAgpUnzoREjhREQcKaA5NmsDzXEozCKF5EgBzVIiJSYhSjBfQgelYDjk6AnOSChCMJ77JAzBFsY5CSNcMvgojHDJIBBKMxSSiMXIHJHI50iJCVgBC+QSOuhMMDcS4C0WMBJFQkLHJ1EMDgCvk0iaTkBiynEfBHRk+LdffvHO83pVEd/7R5qU5J7Aiin5QJq/D97d01oT70YtdPnmDQH2M1XqyxwkvLc6+6qrdKa8i9UsT9LVwuw1yHnv1VI3DN5tPa2MDtTErD5U0Kgbp/O5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MTAxIDAgUj4+L1Byb2NTZXQgWyAvUERGIC9UZXh0IF0vWE9iamVjdCA8PC9YMSAyMiAwIFIvWDIgMjMgMCBSL1gzIDUyIDAgUi9YNCA1MyAwIFIvWDUgNTQgMCBSL1g2IDc2IDAgUi9YNyA1NSAwIFIvWDggNTYgMCBSL1g5IDI0IDAgUi9YMTAgNjAgMCBSL1gxMSA2MSAwIFIvWDEyIDYyIDAgUi9YMTMgNjMgMCBSL1gxNCA2NCAwIFIvWDE1IDY1IDAgUi9YMTYgNjYgMCBSL1gxNyA2NyAwIFIvWDE4IDY4IDAgUi9YMTkgNzEgMCBSL1gyMCA2OSAwIFIvWDIxIDcwIDAgUi9YMjIgNzcgMCBSL1gyMyA3OCAwIFIvWDI0IDI1IDAgUi9YMjUgNzkgMCBSL1gyNiA4MCAwIFIvWDI3IDgxIDAgUi9YMjggODIgMCBSL1gyOSA4MyAwIFIvWDMwIDU4IDAgUi9YMzEgNTcgMCBSL1gzMiAyNiAwIFIvWDMzIDg0IDAgUi9YMzQgODUgMCBSL1gzNSAyNyAwIFIvWDM2IDI4IDAgUi9YMzcgODYgMCBSL1gzOCAyOSAwIFIvWDM5IDg3IDAgUi9YNDAgNTkgMCBSL1g0MSA3NCAwIFIvWDQyIDczIDAgUi9YNDMgNzIgMCBSL1g0NCA4OCAwIFIvWDQ1IDMwIDAgUi9YNDYgMzEgMCBSL1g0NyA4OSAwIFIvWDQ4IDMyIDAgUi9YNDkgOTAgMCBSL1g1MCA5MSAwIFIvWDUxIDMzIDAgUi9YNTIgOTIgMCBSL1g1MyAzNCAwIFI+Pj4+L1JvdGF0ZSAwL1RyaW1Cb3ggWyAwLjAgMC4wIDYxMi4wIDc5Mi4wIF0vVHlwZSAvUGFnZT4+CmVuZG9iagoyMiAwIG9iago8PC9CQm94IFsgMC4wIDAuMCAxNi43MjcgMTYuNzI2IF0vRmlsdGVyIC9GbGF0ZURlY29kZS9Gb3JtVHlwZSAxL0xlbmd0aCAxMDMvTWF0cml4IFsgMSAwIDAgMSAzMTEuMjM5IDc1MS43MDggXS9SZXNvdXJjZXMgPDwvRm9udCA8PC9aYURiIDEyNiAwIFI+Pi9Qcm9jU2V0IFsgL1BERiAvVGV4dCBdPj4vU3VidHlwZSAvRm9ybS9UeXBlIC9YT2JqZWN0Pj4Kc3RyZWFt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DoOIOAh46IRuNNx/zQ2PAycOQ3IUSQqjqIeACwELOwR/CDAACwSVpwplbmRzdHJlYW0KZW5kb2JqCjE0IDAgb2JqCjw8L0xlbmd0aCA0MjYyMS9TdWJ0eXBlIC9YTUwvVHlwZSAvTWV0YWRhdGE+PgpzdHJlYW0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4NCjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iPg0KICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wVFBnPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvdC9wZy8iIHhtbG5zOnhtcEdJbWc9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9nL2ltZy8iPg0KICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MDYrMDA6MDA8L3htcDpDcmVhdGVEYXRlPg0KICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAyMC0wNC0yOFQxNjo0MjowNi0tMDU6MDA8L3htcDpNZXRhZGF0YURhdGU+DQogICAgICA8eG1wOk1vZGlmeURhdGU+MjAyMC0wNC0yOFQxNjo0MjowNi0tMDU6MDA8L3htcDpNb2RpZnlEYXRlPg0KICAgICAgPHhtcDpDcmVhdG9yVG9vbD5CaXRNaXJhY2xlLkRvY290aWMuUGRmIDUuNy45MjMxPC94bXA6Q3JlYXRvclRvb2w+DQogICAgICA8eG1wOlBhZ2VJbmZvPg0KICAgICAgICA8cmRmOlNlcT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDx4bXBUUGc6UGFnZU51bWJlcj4xPC94bXBUUGc6UGFnZU51bWJlcj4NCiAgICAgICAgICAgIDx4bXBHSW1nOmZvcm1hdD5KUEVHPC94bXBHSW1nOmZvcm1hdD4NCiAgICAgICAgICAgIDx4bXBHSW1nOndpZHRoPjI1NjwveG1wR0ltZzp3aWR0aD4NCiAgICAgICAgICAgIDx4bXBHSW1nOmhlaWdodD4yNTY8L3htcEdJbWc6aGVpZ2h0Pg0KICAgICAgICAgICAgPHhtcEdJbWc6aW1hZ2U+LzlqLzRBQVFTa1pKUmdBQkFnRUFTQUJJQUFELzdRQXNVR2h2ZEc5emFHOXdJRE11TUFBNFFrbE5BKzBBQUFBQUFCQUFTQUFBQUFFQQ0KQVFCSUFBQUFBUUFCLys0QUUwRmtiMkpsQUdTQUFBQUFBUVVBQWdBRC85c0FoQUFNQ0FnSUNBZ01DQWdNRUFzTEN4QVVEZzBORGhRWQ0KRWhNVEV4SVlGQklVRkJRVUVoUVVHeDRlSGhzVUpDY25KeWNrTWpVMU5USTdPenM3T3pzN096czdBUTBMQ3hBT0VDSVlHQ0l5S0NFbw0KTWpzeU1qSXlPenM3T3pzN096czdPenM3T3pzN096dEFRRUJBUUR0QVFFQkFRRUJBUUVCQVFFQkFRRUJBUUVCQVFFRC93QUFSQ0FFQQ0KQU1ZREFSRUFBaEVCQXhFQi84UUJRZ0FBQVFVQkFRRUJBUUVBQUFBQUFBQUFBd0FCQWdRRkJnY0lDUW9MQVFBQkJRRUJBUUVCQVFBQQ0KQUFBQUFBQUJBQUlEQkFVR0J3Z0pDZ3NRQUFFRUFRTUNCQUlGQndZSUJRTU1Nd0VBQWhFREJDRVNNUVZCVVdFVEluR0JNZ1lVa2FHeA0KUWlNa0ZWTEJZak0wY29MUlF3Y2xrbFB3NGZGamN6VVdvcktESmtTVFZHUkZ3cU4wTmhmU1ZlSmw4ck9FdzlOMTQvTkdKNVNraGJTVg0KeE5UazlLVzF4ZFhsOVZabWRvYVdwcmJHMXViMk4wZFhaM2VIbDZlM3g5Zm45eEVBQWdJQkFnUUVBd1FGQmdjSEJnSTdBUUFDRVFNaA0KTVJJRVFWRmhjU0lUQlRLQmtSU2hzVUlqd1ZMUjhETWtZdUZ5Z3BKRFV4VmpjelR4SlFZV29yS0RCeVkxd3RKRWsxU2pGMlJGVlRaMA0KWmVMeXM0VEQwM1hqODBhVXBJVzBsY1RVNVBTbHRjWFY1ZlZXWm5hR2xxYTJ4dGJtOWljM1IxZG5kNGVYcDdmSDErZjMvOW9BREFNQg0KQUFJUkF4RUFQd0QwWHAvVDhBNEdNVGpVa21tdVQ2YmYzUjVKS2JIN1A2Zi9BTnhxZisyMi93QnlTbGZzL3AvL0FIR3Avd0MyMi8zSg0KS1YreituLzl4cWYrMjIvM0pLVit6K24vQVBjYW4vdHR2OXlTbGZzL3AvOEEzR3AvN2JiL0FISktWK3orbi84QWNhbi9BTGJiL2NrcA0KWDdQNmYvM0dwLzdiYi9ja3BYN1A2ZjhBOXhxZisyMi8zSktWK3orbi93RGNhbi90dHY4QWNrcFg3UDZmL3dCeHFmOEF0dHY5eVNsZg0Kcy9wLy9jYW4vdHR2OXlTbGZzL3Avd0QzR3AvN2JiL2NrcFg3UDZmL0FOeHFmKzIyL3dCeVNsZnMvcC8vQUhHcC93QzIyLzNKS1Yreg0KK24vOXhxZisyMi8zSktWK3orbi9BUGNhbi90dHY5eVNsZnMvcC84QTNHcC83YmIvQUhKS1YreituLzhBY2FuL0FMYmIvY2twWDdQNg0KZi8zR3AvN2JiL2NrcFg3UDZmOEE5eHFmKzIyLzNKS1YreituL3dEY2FuL3R0djhBY2twWDdQNmYvd0J4cWY4QXR0djl5U2xmcy9wLw0KL2Nhbi90dHY5eVNtdms5UHdCZGl4alU2M0dmMGJmOEFSVytTU214MC93RDVQeHYrSnIvNmtKS2NENjFHd1psT3dkUUk5TC90RVlaOQ0KSS9TOXAxU1U0azNmdTliL0FNNC8rUVNVcWJ2M2V0LzV4LzhBSUpLVk4zN3ZXLzhBT1A4QTVCSlNwdS9kNjMvbkgveUNTbFRkKzcxdg0KL09QL0FKQkpTcHUvZDYzL0FKeC84Z2twVTNmdTliL3pqLzVCSlNwdS9kNjMvbkgvQU1na3BVM2Z1OWIvQU00LytRU1VxYnYzZXQvNQ0KeC84QUlKS1owTnZzdGF3VmRhZk0rMDJiUVlFOGxvU1V4ZjZ6WHViNmZXV3dlR1BKYVBoN0VsTFRkKzcxdi9PUC9rRWxLbTc5M3JmKw0KY2Y4QXlDU2xUZCs3MXY4QXpqLzVCSlRZd3MzR3c4aXZJZWV0V09xTXVxc0Fjd253UHVFcEtkci9BSjVZZi9jSFAvN1piLzZVU1VyLw0KQUo1WWYvY0hQLzdaYi82VVNVbndmclBqWjJWWGlNeE11dDFoSUQ3YXcxZ2dFNm5lZkJKVHNwS1VrcFNTbXZrL3oySi94eC84OVhKSw0KVjAvL0FKUHh2K0pyL3dDcENTbkQrcy9WY25BeTZxNmVwREJEcTl4WWFmVjNHU04wN0hKS2NmOEE1eDUzL2w4My93QmhQL1VTU2xmOA0KNDg3L0FNdm0vd0RzSi82aVNVci9BSng1My9sODMvMkUvd0RVU1NsZjg0ODcvd0F2bS84QXNKLzZpU1VyL25IbmYrWHpmL1lUL3dCUg0KSktWL3pqenYvTDV2L3NKLzZpU1VyL25IbmY4QWw4My9BTmhQL1VTU2xmOEFPUE8vOHZtLyt3bi9BS2lTVXIvbkhuZitYemYvQUdFLw0KOVJKS1Yvemp6djhBeStiL0FPd24vcUpKU3Y4QW5IbmYrWHpmL1lUL0FOUkpLVi96anp2L0FDK2Ivd0N3bi9xSkpTditjZWQvNWZOLw0KOWhQL0FGRWtwWC9PUE8vOHZtLyt3bi9xSkpTditjZWQvd0NYemY4QTJFLzlSSktWL3dBNDg3L3krYi83Q2Y4QXFKSlN2K2NlZC81Zg0KTi84QVlULzFFa3BYL09QTy93REw1djhBN0NmK29rbExINnc1cmdXdTY2d2c4ZzRtbi9ucEpTUDl0WGYrWE5QL0FMQk4vd0RTS1NucQ0KdWw5WDZIMVcwNDJIdHN0WXplNmFpM1FGclNkV2p1NUpUcXRZeGcyc2FHandBZ0pLUTVQODlpZjhjZjhBejFja3BYVC9BUGsvRy80bQ0Kdi9xUWtwRG41dlI4YXhyT28yVXNzTFphTFluYlBhVWxOWDlyZlZmL0FFK0o5emY3a2xLL2EzMVgvd0JQaWZjMys1SlN2MnQ5Vi84QQ0KVDRuM04vdVNVcjlyZlZmL0FFK0o5emY3a2xLL2EzMVgvd0JQaWZjMys1SlN2MnQ5Vi84QVQ0bjNOL3VTVXI5cmZWZi9BRStKOXpmNw0Ka2xOeGplbVdzYlpYUzE3SGdPYTV0SklJT29JSVlrcGYwdW4vQVBjY2Y5c0gvd0Fna3BYcGRQOEErNDQvN1lQL0FKQkpTdlM2Zi8zSA0KSC9iQi93RElKS1Y2WFQvKzQ0LzdZUDhBNUJKU3ZTNmYvd0J4eC8yd2YvSUpLVjZYVC84QXVPUCsyRC81QkpTdlM2Zi9BTnh4L3dCcw0KSC95Q1NsZWwwLzhBN2pqL0FMWVAva0VsSzlMcC93RDNISC9iQi84QUlKS1Y2WFQvQVB1T1ArMkQvd0NRU1VyMHVuLzl4eC8yd2Y4QQ0KeUNTbGVsMC8vdU9QKzJEL0FPUVNVeXIreVZIZFZUc0pFUzJwd01mSmlTbXcxd2NBNFRCOFFRZnVLU2tHVC9QWW4vSEgvd0E5WEpLVg0KMC84QTVQeHYrSnIvQU9wQ1NuRytzYmNjNVZSdTZaa2RRUHA2UHBZSGhvayswblk3VkpUazdjSC9BT2Q3Ti83WkgvcE5KU3R1RC84QQ0KTzltLzlzai9BTkpwS1Z0d2YvbmV6ZjhBdGtmK2swbEsyNFAvQU03MmIvMnlQL1NhU2xiY0gvNTNzMy90a2Y4QXBOSlN0dUQvQVBPOQ0KbS84QWJJLzlKcEtWdHdmL0FKM3MzL3RrZitrMGxPaFYxN01wcVpUVjBucUxLNjJoakdpb1FHdEVBZnpTU21mL0FEajZoLzVWOVMvNw0KYUgvcEpKU3YrY2ZVUC9LdnFYL2JRLzhBU1NTbGY4NCtvZjhBbFgxTC90b2Yra2tsSy81eDlRLzhxK3BmOXREL0FOSkpLVi96ajZoLw0KNVY5Uy93QzJoLzZTU1VyL0FKeDlRLzhBS3ZxWC9iUS85SkpLVi96ajZoLzVWOVMvN2FIL0FLU1NVci9uSDFEL0FNcStwZjhBYlEvOQ0KSkpLZDJ0bGo2MnZOdGpTNEFscERKRWpnK3hKVEwwclA5TS83bWY4QWtFbEs5S3ovQUV6L0FMbWYrUVNVcjByUDlNLzdtZjhBa0VsSw0KOUt6L0FFei9BTG1mK1FTVWthQ0FBU1hIeE1UK0FDU2tHVC9QWW4vSEgvejFja3BYVC84QWsvRy80bXYvQUtrSkthWFYrcWRSd2JtVg0KNFdEWmx0YzNjNTdBU0FaSWpSSlRRLzV4ZGUvOHA3djgwcEtWL3dBNHV2ZitVOTMrYVVsSy93Q2NYWHYvQUNudS93QTBwS1Yvemk2OQ0KL3dDVTkzK2FVbEsvNXhkZS93REtlNy9OS1NsZjg0dXZmK1U5MythVWxLLzV4ZGUvOHA3djgwcEtWL3ppNjkvNVQzZjVwU1VyL25GMQ0KNy95bnUvelNrcFgvQURpNjkvNVQzZjVwU1VyL0FKeGRlLzhBS2U3L0FEU2twWC9PTHIzL0FKVDNmNXBTVXIvbkYxNy9BTXA3djgwcA0KS1Yvemk2OS81VDNmNXBTVXIvbkYxNy95bnUvelNrcFgvT0xyMy9sUGQvbWxKU3YrY1hYdi9LZTcvTktTbGY4QU9McjMvbFBkL21sSg0KVHE5Tnl1b1oyTjYyUlQ5amZ1TGZTc1laZ1I3dnBoSlRhMjVQNzdQOHcvOEFwUkpTdHVUKyt6L01QL3BSSlNSdTRBYmlDZTVBZ2ZsSw0KU2tHVC9QWW4vSEgvQU05WEpLVjAvd0Q1UHh2K0pyLzZrSkthUFYrbzlYdzdtVjlPd0RtTWMzYzU0ZEVPazZKS2FQN2Qrcy8vQUpTbg0KL1A4QTlpU2xmdDM2ei84QWxLZjgvd0QySktWKzNmclAvd0NVcC96L0FQWWtwWDdkK3MvL0FKU24vUDhBOWlTbGZ0MzZ6LzhBbEtmOA0KL3dEMkpLViszZnJQL3dDVXAvei9BUFlrcFg3ZCtzLy9BSlNuL1A4QTlpU2xmdDM2ei84QWxLZjgvd0QySktWKzNmclAvd0NVcC96Lw0KQVBZa3BYN2Qrcy8vQUpTbi9QOEE5aVNsZnQzNnovOEFsS2Y4L3dEMkpLViszZnJQL3dDVXAvei9BUFlrcFg3ZCtzLy9BSlNuL1A4QQ0KOWlTbGZ0MzZ6LzhBbEtmOC93RDJKS1YrM2ZyUC93Q1VwL3ovQVBZa3BYN2Qrcy8vQUpTbi9QOEE5aVNuWnc3TTdJeHE3cjJ0eDdIdA0KbDFSYVhGcDhKM2hKU2Jiay92cy96RC82VVNVcmJrL3ZzL3pEL3dDbEVsSzI1UDc3UDh3LytsRWxLMjVQNzdQOHcvOEFwUkpTUnU0QQ0KYmlDZTVBZ2ZsS1NrR1QvUFluL0hIL3oxY2twWFQvOEFrL0cvNG12L0FLa0pLYzdyZlUrcFlOOWRlRmppNWptYm5PTnRkY0dTSWl3Rg0KSlRuZjg0T3ZmOXdoL3dDeE5IL2tFbEsvNXdkZS93QzRRLzhBWW1qL0FNZ2twWC9PRHIzL0FIQ0gvc1RSL3dDUVNVci9BSndkZS83aA0KRC8ySm8vOEFJSktWL3dBNE92Zjl3aC83RTBmK1FTVXIvbkIxNy91RVAvWW1qL3lDU2xmODRPdmY5d2gvN0UwZitRU1VyL25CMTcvdQ0KRVA4QTJKby84Z2twWC9PRHIzL2NJZjhBc1RSLzVCSlN2K2NIWHY4QXVFUC9BR0pvL3dESUpLVi96ZzY5L3dCd2gvN0UwZjhBa0VsSw0KL3dDY0hYdis0US85aWFQL0FDQ1NsLzI1OVlIMXZjMmlxa3NhWGZwTWlvekE3UTBKS1lqNndkZmdmcVEvOWlLUC9JcEtYLzV3ZGUvNw0KaEQvMkpvLzhna3BYL09EcjMvY0lmK3hOSC9rRWxLZjEzNndORExCUlZEaVdtcjdSVHYwQjc3WVNVcDNYUHJCNlJ1RkZUTnBBTEg1Rg0KUmNaSStqRFFFbEtkMTM2d0dvMk5vcVlXa0RZL0lwTG5TZnpZYUVsTHQ2NTEreHJqNkZWT3dGMDJaRkpCQThJYUVsT3AwbS9xK1dMZg0KMmpTL0UyYmZUSWRXL2ZPN2NkR2FSQVNVNmpRUUFDUzQrSmlmd0FTVWd5ZjU3RS80NC84QW5xNUpTdW4vQVBKK04veE5mL1VoSlRoZg0KV2ZwT1RuNWRWdEhUeG10Ylh0THpjS3Rwa25iRzVxU25HLzV0OVEvOG94LzdGai8wb2twWC9OdnFIL2xHUC9Zc2YrbEVsSy81dDlRLw0KOG94LzdGai9BTktKS1YvemI2aC81UmovQU5peC93Q2xFbEsvNXQ5US93REtNZjhBc1dQL0FFb2twWC9OdnFIL0FKUmovd0JpeC82VQ0KU1VyL0FKdDlRLzhBS01mK3hZLzlLSktWL3dBMitvZitVWS85aXgvNlVTVXIvbTMxRC95akgvc1dQL1NpU2xmODIrb2YrVVkvOWl4Lw0KNlVTVXIvbTMxRC95akgvc1dQOEEwb2twWC9OdnFIL2xHUDhBMkxIL0FLVVNVelo5WCtwTURtdDZFeUhpRE9TeDMzYm5tUGtrcGgveg0KYjZoLzVSai9BTml4L3dDbEVsSy81dDlRL3dES01mOEFzV1AvQUVva3BYL052cUgvQUpSai93Qml4LzZVU1V5UDFmNmtXQ3M5Q1pEVA0KSS9XV3ovbmI1U1V1UHEvMUlWbXI5aE0ydU02NUxDZms3ZklTVXNQcS93QlNGWnIvQUdFemFUT3VTMG41TzN5RWxPOVI5VHVpTnE5MQ0KRG11ZTBiMmw1ZEJJMWdtZnZDU25WR0phMEJyY3E0QWFBUlZ4L3dCdEpLVHNhV3REWE9MeVB6blJKL3pRQWtwRGsvejJKL3h4L3dEUA0KVnlTbGRQOEErVDhiL2lhLytwQ1NuUDYxazllcHZyYjBtbHR0WlpMeWVRNmVPRDJTVTUzMi93Q3VmL2NSbit2eVNVcjdmOWMvKzRqUA0KOWZra3BYMi82NS85eEdmNi9KSlN2dC8xei83aU0vMStTU2xmYi9ybi93QnhHZjYvSkpTdnQvMXovd0M0alA4QVg1SktWOXYrdWY4QQ0KM0VaL3I4a2xLKzMvQUZ6L0FPNGpQOWZra3BYMi93Q3VmL2NSbit2eVNVcjdmOWMvKzRqUDlma2twWDIvNjUvOXhHZjYvSkpTdnQvMQ0Kei83aU0vMStTU2xmYi9ybi93QnhHZjYvSkpTdnQvMXovd0M0alA4QVg1SktWOXYrdWY4QTNFWi9yOGtsSyszL0FGei9BTzRqUDlmaw0Ka3BYMi93Q3VmL2NSbit2eVNVcjdmOWMvKzRqUDlma2twWDIvNjUvOXhHZjYvSkpTdnQvMXovN2lNLzErU1NsZmIvcm4vd0J4R2Y2Lw0KSkpUdDlJdDZoZGk3dXBzOVBJM0dXZ1FBTzBhQkpTYkovbnNUL2pqL0FPZXJrbEs2Zi95ZmpmOEFFMS85U0VsTlRxblFhT3EzTXV0eQ0KTW1nc2JzRGFIaGdPcE1tV3UxMVNVMHYrWnVIL0FOenMvd0Q3ZWIvNlRTVXM3Nm1ZcEIyNStjRDJKdEJIL1VCSlREL21Xei95eXkvOA0KOUpTditaYlAvTExML3dBOUpTditaYlAvQUN5eS93RFBTVXIvQUpscy93RExMTC96MGxLLzVscy84c3N2L1BTVXIvbVd6L3l5eS84QQ0KUFNVci9tV3ovd0Fzc3Y4QXowbEsvd0NaYlA4QXl5eS84OUpTditaYlAvTExML3owbEpCOVRjU05jN09uL2pXLytrMGxLLzVtNGY4QQ0KM096L0FQdDV2L3BOSlN2K1p1SC9BTnpzL3dEN2ViLzZUU1VyL21iaC93RGM3UDhBKzNtLytrMGxLLzVtNGY4QTNPei9BUHQ1di9wTg0KSlRzWStOWmkwVjQxVnU1bFRRd090QmM4d0lsemc1dXZ5U1V6MjVQNzdQOEFNUDhBNlVTVXphSEFlOGdueEFnZmxLU21TU2xKS1VrcA0KcjVQODlpZjhjZjhBejFja3BYVC9BUGsvRy80bXYvcVFrcHFkVTZCaDlYdVpka3Z1WTVqZGdGVDlvaVNkZEQ0cEthWC9BREs2Vi9wYw0Kci90My93QXhTVTIrbmZWL0c2VGE2N0N0c0wzdDJIMW5lb0ltZEFOdXVpU25RMjVQNzdQOHcvOEFwUkpTdHVUKyt6L01QL3BSSlN0dQ0KVCsrei9NUC9BS1VTVXJiay92cy96RC82VVNVcmJrL3ZzL3pEL3dDbEVsSzI1UDc3UDh3LytsRWxLMjVQNzdQOHcvOEFwUkpTdHVUKw0KK3ovTVAvcFJKU3R1VCsrei9NUC9BS1VTVXJiay92cy96RC82VVNVcmJrL3ZzL3pEL3dDbEVsSzI1UDc3UDh3LytsRWxLMjVQNzdQOA0Kdy84QXBSSlN0dVQrK3ovTVAvcFJKU3R1VCsrei9NUC9BS1VTVXJiay92cy96RC82VVNVcmJrL3ZzL3pEL3dDbEVsSzI1UDc3UDh3Lw0KK2xFbEsyNVA3N1A4dy84QXBSSlROb2NCN3lDZkVDQitVcEtRNVA4QVBZbi9BQngvODlYSktWMC8vay9HL3dDSnIvNmtKS2FYVnVnOQ0KSzZyY3k3cUU3Mk4yTmgrM1NTZjRwS2FQL00zNnQveXYrM1VsSy81bS9WditWLzI2a3BYL0FETityZjhBSy83ZFNVci9BSm0vVnY4QQ0KbGY4QWJxU2xmOHpmcTM0dS93QzNVbEx1K3FIMWRlWmU1N2lOSk5zcEtVMzZvZlYxaGxqbnRQRWkyRWxLUDFPK3JqaVNTNGs2aytxaw0KcGIvbWI5Vy81WC9icVNsZjh6ZnEzL0svN2RTVXIvbWI5Vy81WC9icVNsZjh6ZnEzL0svN2RTVXIvbWI5Vy81WC9icVNtQitwWDFkSg0Ka1dXRHlGcmYvSXBLVi96SityditsdC83Y2IvNUZKVE1mVXo2dGdRUzgrWnRTVXIvQUptL1Z2OEFsZjhBYnFTbGY4emZxMy9LL3dDMw0KVWxPeFJWUmpVVjQ5T1FXMTFNYld3U3d3MW8yalV0OGtsTTViL3dCeWo5OWYva0VsTW1zYzRTMjk3aDRqWWY4QXZpU2tqUVdpQzR1UA0KaVluOEFFbEljbitleFA4QWpqLzU2dVNVcnAvL0FDZmpmOFRYL3dCU0VsT0g5WnVuUHpNdXA3T2xucUFiWEhxQzcwdHVwOXNTa3B5Qg0KME4rMDd2cTgrZTM2MllDU2xONkhaUHYrcnI0OEJsa1QrVkpTeDZIYkpqNnZPanQrdEgrOUpTdjJIZC84N3p2L0FHTFA5NlNsZnNPNw0KL3dDZDUzL3NXZjcwbEsvWWQzL3p2Ty85aXovZWtwWDdEdS8rZDUzL0FMRm4rOUpUWXdQcTdYa1pkZE9aMFIyTlE2ZDkzMmt1Mncwaw0KYUE5em9rcDEvd0RtVjlYdjlBNy9BTGNmL3dDU1NVci9BSmxmVjcvUU8vN2NmLzVKSlN2K1pYMWUvd0JBNy90eC93RDVKSlN2K1pYMQ0KZS8wRHYrM0gvd0Rra2xLLzVsZlY3L1FPL3dDM0gvOEFra2xLL3dDWlgxZS8wRHYrM0gvK1NTVXIvbVY5WHY4QVFPLzdjZjhBK1NTVQ0Kci9tVjlYdjlBNy90eC84QTVKSlN2K1pYMWUvMER2OEF0eC8vQUpKSlN2OEFtVjlYdjlBNy90eC8va2tsSy81bGZWNy9BRUR2KzNILw0KQVBra2xLLzVsZlY3L1FPLzdjZi9BT1NTVTZmVHVtNG5Tc2Y3TGhOTEt5NHZna3UxTWQzVDRKS2JTU212ay96MkoveHgvd0RQVnlTbA0KZFA4QStUOGIvaWEvK3BDU25ONnpuZGN4OHB0WFM4VDdSVjZZYzV3YzBFT0pjSTkwOWdrcG9mdFQ2My8rVnJ2ODVuL2tVbEsvYW4xdg0KL3dESzEzK2N6L3lLU2xmdFQ2My9BUGxhNy9PWi93Q1JTVXI5cWZXLy93QXJYZjV6UC9JcEtWKzFQcmYvQU9WcnY4NW4va1VsSy9hbg0KMXY4QS9LMTMrY3ovQU1pa3BqWjFiNjN0cmU3OW5PRU5KbmN6U0IvVlNVeS9hbjF2L3dESzEzK2N6L3lLU2xmdFQ2My9BUGxhNy9PWg0KL3dDUlNVcjlxZlcvL3dBclhmNXpQL0lwS1YrMVByZi9BT1Zydjg1bi9rVWxNVDFiNjMrbzF2N09kcTF4amN6c1cveWZOSlRMOXFmVw0KL3dEOHJYZjV6UDhBeUtTbGZ0VDYzLzhBbGE3L0FEbWYrUlNVcjlxZlcvOEE4clhmNXpQL0FDS1NsZnRUNjMvK1Zydjg1bi9rVWxNYQ0KK3JmVzl6U2YyYzQrNXcra3pzU1AzVWxNdjJwOWIvOEF5dGQvbk0vOGlrcFg3VSt0L3dENVd1L3ptZjhBa1VsSy9hbjF2LzhBSzEzKw0KY3oveUtTblQ2WGxkVHlLWHU2cFhiaVdCME5ZMW9mTFlHc3RyUGRKVGZvZVhXUFp1YzROYTBqZTNhWkpkL0piNEpLV3lmNTdFL3dDTw0KUC9ucTVKU3VuLzhBSitOL3hOZi9BRklTVTUzV0xQckZWbHRkMGZIWmRVNnRvZTV6bU5JY0hQMDk1SFlwS1lkTHp1dTVOejZ1bzRWMg0KTUdOL25HdXFJYzRFRFNXL3hTVTZmNmYvQUlmL0FNQlNVcjlQL3dBUC93Q0FwS1Yrbi80Zi93QUJTVXI5UC93Ly9nS1NsZnAvK0gvOA0KQlNVd3Zia1Bwc2EwWGt1YTRBZm9lU0VsTS8wLy9ELytBcEtWK24vNGYvd0ZKU3YwL3dEdy93RDRDa3BYNmY4QTRmOEE4QlNVd0xjaw0KM05mK21nTmNDZjBQSkxQN2tsTS8wLzhBdy84QTRDa3BYNmYvQUlmL0FNQlNVcjlQL3dBUC93Q0FwS1Yrbi80Zi93QUJTVXdwYmtOWQ0KUVJlUGM4LzRIZ3VjUWtwbituLzRmL3dGSlN2MC93RHcvd0Q0Q2twWDZmOEE0ZjhBOEJTVXI5UC9BTVAvQU9BcEtaVU50RnRqN044Rg0KclFOK3lkQytmb2ZGSlMyVC9QWW4vSEgvQU05WEpLVjAvd0Q1UHh2K0pyLzZrSktjdnIzVitvZE95YTZzTitFeHJtYmlNdDVhNlpJOQ0Kc1Bib2tweS8rYy9XL3dEVGRKLzdkUDhBNlZTVXIvblAxdjhBMDNTZiszVC9BT2xVbEsvNXo5Yi9BTk4wbi90MC93RHBWSlN2K2MvVw0KL3dEVGRKLzdkUDhBNlZTVXIvblAxdjhBMDNTZiszVC9BT2xVbEsvNXo5Yi9BTk4wbi90MC93RHBWSlN2K2MvVy93RFRkSi83ZFA4QQ0KNlZTVXIvblAxdjhBMDNTZiszVC9BT2xVbEsvNXo5Yi9BTk4wbi90MC93RHBWSlN2K2MvVy93RFRkSi83ZFA4QTZWU1VyL25QMXY4QQ0KMDNTZiszVC9BT2xVbEsvNXo5Yi9BTk4wbi90MC93RHBWSlM0K3MvV2dmZGIwb2p1QmFSLzZNS1NsSDZ6OWJreGIwb0R0TnAvOUtwSw0KWnQrcy9WVGEwT3Q2VzJxUnZQcWt1aWRZL1NlQ1NuYy81d2RFL3dDNTFIL2JnL3ZTVXIvbkIwVC9BTG5VZjl1RCs5SlRlWTlsakcyTQ0KSWMxNERtdUhCQjFCU1V5U1VwSlNrbEtTVTE4bitleFArT1AvQUo2dVNVcnAvd0R5ZmpmOFRYLzFJU1U1L1diL0FLdlY1REdkWHJxZg0KZHNsdnFCcElZU2YzbzdncEthSDJ2NmsvNkRHL3phLy9BQ1NTbGZhL3FUL29NYi9Oci84QUpKS1Y5citwUCtneHY4MnYvd0Fra3BYMg0KdjZrLzZERy96YS8vQUNTU2xmYS9xVC9vTWIvTnIvOEFKSktWOXIrcFArZ3h2ODJ2L3dBa2twWTVuMUphSk5HTnlCOUd2dVkvZVNVdg0KOXIrcFArZ3h2ODJ2L3dBa2twWDJ2NmsvNkRHL3phLy9BQ1NTbGZhL3FUL29NYi9Oci84QUpKS1Y5citwUCtneHY4MnYvd0Fra3BYMg0KdjZrLzZERy96YS8vQUNTU2xobWZVbHdEaFJqUVJQMGEvd0R5U1NsL3RmMUovd0JCamY1dGYva2tsSysxL1VuL0FFR04vbTEvK1NTVQ0KcjdYOVNmOEFRWTMrYlgvNUpKU3Z0ZjFKL3dCQmpmNXRmL2trbE41bjFvNkZXeHRiTG10YXdCcldndGdBYUFmU1NVdi9BTTZ1aS82ZA0KditjMy93QWtrcFgvQURxNkwvcDIvd0NjMy95U1NuVEZ6M0FFVXZJT28xWi81TkpUSmxtOXhhV2xqbWdHSFJ3Wi9kSjhFbElzbitleA0KUCtPUC9ucTVKU3VuL3dESitOL3hOZjhBMUlTVTFNN3B1SG5aaGZrNDR2YzJ0Z0IyMXVnYnJOUDBpU2tQL04vcGYvY0VmOXQwZjNKSw0KVi96ZjZYLzNCSC9iZEg5eVNsZjgzK2wvOXdSLzIzUi9ja3BYL04vcGYvY0VmOXQwZjNKS1YvemY2WC8zQkgvYmRIOXlTbGY4MytsLw0KOXdSLzIzUi9ja3BIZjBEcFlZSXdSOU5uNWxIZHpVbEpQK2IvQUV2L0FMZ2ovdHVqKzVKU3YrYi9BRXYvQUxnai90dWorNUpTditiLw0KQUV2L0FMZ2ovdHVqKzVKU3YrYi9BRXYvQUxnai90dWorNUpTditiL0FFdi9BTGdqL3R1ais1SlNQSDZCMHMwVms0SUpMRy9tVWVDUw0Ka24vTi9wZi9BSEJIL2JkSDl5U2xmODMrbC84QWNFZjl0MGYzSktWL3pmNlgvd0J3Ui8yM1IvY2twWC9OL3BmL0FIQkgvYmRIOXlTbA0KZjgzK2wvOEFjRWY5dDBmM0pLVi96ZjZYL3dCd1IvMjNSL2NrcFgvTi9wZi9BSEJIL2JkSDl5U20rQmNBQVBXQUdnSDZGSlRMSDMrdg0KWnYzenNaOVBiUE5uN2lTbFpQOEFQWW4vQUJ4Lzg5WEpLVjAvL2svRy93Q0pyLzZrSkthUFY4THJPVGV4L1Ric2VwZ1pEaGRXSGt1aw0KOEVzZG9rcG8vc242MWY4QWNyQy83WkgvQUtTU1VyOWsvV3IvQUxsWVgvYkkvd0RTYVNsZnNuNjF6L1M4TC90a2Yra2tsSy9aUDFxLw0KN2xZWC9iSS85SnBLVit5ZnJWLzNLd3YrMlIvNlRTVXI5ay9Xci91VmhmOEFiSS85SnBLV1BTUHJTZWNyQ1BmK1pIYi9BSzBrcGY4QQ0KWlAxcS93QzVXRi8yeVA4QTBta3BkM1MvclNUTGNuQ2FQQVVqK05hU2x2MlQ5YXYrNVdGLzJ5UC9BRW1rcFg3Sit0WC9BSEt3disyUg0KL3dDazBsS0hTdnJWT3VWaFIveEkvd0RTU1NsaDBqNjBnQURLd2dCb0FLUi82U1NVeWIwcjYwRFYyVGhPOEI2SWovejJrcFk5Syt0Ug0KSlAyckNIa0tSLzZUU1VyOWsvV3IvdVZoZjlzai93QkpwS2JmVE9uZFpxeUM3cWx1TGZSdElESzZnMDd0SU03QWtwMVBzMk4vb21mNQ0Kby91U1VyN05qZjZKbithUDdrbEsrelkzK2laL21qKzVKU3ZzMk4vb21mNW8vdVNVeVpWVlhQcHNheWVkb0FtUGdrcEZrL3oySi94eA0KL3dEUFZ5U2xkUDhBK1Q4Yi9pYS8rcENTbkUrczNWY2pBeXFxcWVvakJEcTl4WWFmVm5Wd21kamtsT04vemp6di9MNXYvc0ovNmlTVQ0Kci9uSG5mOEFsODMvQU5oUC9VU1NsZjhBT1BPLzh2bS8rd24vQUtpU1V4ZDlaT3BBK3pydFpIbml4LzZJS1NtUC9PVHF2L2w1Vi83RA0KSC8zblNVci9BSnlkVi84QUx5ci9BTmhqL3dDODZTbGY4NU9xL3dEbDVWLzdESC8zblNVci9uSjFYL3k4cS84QVlZLys4NlNsZjg1Tw0KcS84QWw1Vi83REgvQU41MGxNMi9XUHFFZTdyekFmQVlzLzhBb2tKS1gvNXg1My9sODMvMkUvOEFVU1NsZjg0ODcveStiLzdDZitvaw0KbE5ucCtkMS9xMXpxZW5kYXF0Y3h1OXdkamhrQ1k3MCthU25RL1ovMTEvOEFMU2ovQUxhYi93Q2tVbEsvWi8xMS93RExTai90cHY4QQ0KNlJTVTZQUzZldVk5YjI5VXZxeTNrZ3NjMzlIdEVjZTJvSktidTdKL2NaL25uLzBta3BtMHZJOTRBUGdESS9JRWxNa2xLU1VwSlNrbA0KTmZKL25zVC9BSTQvK2Vya2xLNmYvd0FuNDMvRTEvOEFVaEpUUTZ4MXJvM1RMMlZkU2J1c2V6YzM5SHY5c2tjcEthSC9BRHIrcW9pYQ0KK2VQMElTVXIvblo5VmY4QVIvOEFnSVNVci9uWjlWZjlILzRDRWxLUDFyK3FoRUdxUWVSNkEvdVNVdy81eS9VNy91TzMvd0JoMi8zSg0KS1YvemwrcDMvY2R2L3NPMys1SlN2K2N2MU8vN2p0LzloMi8zSktWL3psK3AzL2Nkdi9zTzMrNUpTdjhBbkw5VHYrNDdmL1lkdjl5Uw0KbVErdFgxVGFJYlVBQjJGQS91U1V2L3pzK3F2K2ovOEFBUWtwWC9PejZxLzZQL3dFSktYYjlidnF1MmRyQ0owTVV4S1NsLzhBbmY4QQ0KVmo5MC93RGJLU2xmODcvcXgrNmYrMlVsSy81My9WajkwLzhBYktTbGY4Ny9BS3NmdW4vdGxKVE52MTErcnpCdFliR2p3RlpBU1V2Lw0KQU0rT2cvdjIvd0RiWlNVci9ueDBIOSszL3RzcEtWL3o0NkQrL2IvMjJVbE90MDdxT04xWEdHWGlFbXNrdEJjSU1qblJKVExKL25zVA0KL2pqL0FPZXJrbEs2Zi95ZmpmOEFFMS85U0VsSm5Wc2VaZTBPUG1KU1U4aDlaYzJ2RTZvNmtkUXV4UFkwK2xWanRzYnIzM0d4bjVFbA0KT1YrMTJmOEFseGsvK3dqUC9TNlNsZnRkbi9seGsvOEFzSXovQU5McEtWKzEyZjhBbHhrLyt3alAvUzZTbGZ0ZG4vbHhrLzhBc0l6Lw0KQU5McEtWKzEyZjhBbHhrLyt3alAvUzZTbGZ0ZG4vbHhrLzhBc0l6L0FOTHBLVisxMmY4QWx4ay8rd2pQL1M2U2xmdGRuL2x4ay84QQ0Kc0l6L0FOTHBLVisxMmY4QWx4ay8rd2pQL1M2U2xmdGRuL2x4ay84QXNJei9BTkxwS1YrMTJmOEFseGsvK3dqUC9TNlNsZnRkbi9seA0Kay84QXNJei9BTkxwS1YrMTJmOEFseGsvK3dqUC9TNlNsZnRkbi9seGsvOEFzSXovQU5McEtWKzEyZjhBbHhrLyt3alAvUzZTbGZ0ZA0Kbi9seGsvOEFzSXovQU5McEtWKzEyZjhBbHhrLyt3alAvUzZTbGZ0ZG4vbHhrLzhBc0l6L0FOTHBLVisxMmY4QWx4ay8rd2pQL1M2Uw0KbGZ0ZG4vbHhrLzhBc0l6L0FOTHBLZTM2SFhZenBsTHJNaDJWNnpSYzIxekJXZHRnRG1ndERuZGo0cEtUNVA4QVBZbi9BQngvODlYSg0KS1YwLy9rL0cvd0NKci82a0pLYUhXZnJEVDBlK3VpeXUxNWV6Zk5kWWVPU09UYlg0SktjNy9udmkvd0NneWY4QXRnZis5Q1NsZjg5OA0KWC9RWlAvYkEvd0RlaEpTditlK0wvb01uL3RnZis5Q1NsZjhBUGZGLzBHVC9BTnNEL3dCNkVsSy81NzR2K2d5ZisyQi83MEpLVi96Mw0KeGY4QVFaUC9BR3dQL2VoSlN2OEFudmkvNkRKLzdZSC9BTDBKS1YvejN4ZjlCay85c0QvM29TVXIvbnZpL3dDZ3lmOEF0Z2YrOUNTbA0KZjg5OFgvUVpQL2JBL3dEZWhKU3YrZStML29Nbi90Z2YrOUNTbGY4QVBmRi8wR1QvQU5zRC93QjZFbEsvNTc0ditneWYrMkIvNzBKSw0KVi96M3hmOEFRWlAvQUd3UC9laEpTdjhBbnZpLzZESi83WUgvQUwwSktWL3ozeGY5QmsvOXNELzNvU1U2M1NlcU82eGpPeWNlYW1zZQ0KYXkyNnJhNlFHdW5TMTJudVNVM2R1VCsrei9NUC9wUkpTdHVUKyt6L0FERC9BT2xFbEsyNVA3N1A4dy8rbEVsSzI1UDc3UDhBTVA4QQ0KNlVTVXpZSGdmcENISHhhSS9LWEpLUTVQODlpZjhjZi9BRDFja3BYVC93RGsvRy80bXY4QTZrSkthSFdlczQzVGIyVlhZVnVVWHMzQg0KMWJBOEFTUkdxU25QL3dDZFdCLzVVNVAvQUd5Mys5SlN2K2RXQi81VTVQOEEyeTMrOUpTditkV0Ivd0NWT1QvMnkzKzlKU3YrZFdCLw0KNVU1UC9iTGY3MGxLL3dDZFdCLzVVNVAvQUd5Mys5SlN2K2RXQi81VTVQOEEyeTMrOUpTditkV0Ivd0NWT1QvMnkzKzlKU3YrZFdCLw0KNVU1UC9iTGY3MGxLL3dDZFdCLzVVNVAvQUd5Mys5SlN2K2RXQi81VTVQOEEyeTMrOUpTditkV0Ivd0NWT1QvMnkzKzlKU3YrZFdCLw0KNVU1UC9iTGY3MGxLL3dDZFdCLzVVNVAvQUd5Mys5SlN2K2RXQi81VTVQOEEyeTMrOUpTditkV0Ivd0NWT1QvMnkzKzlKU3YrZFdCLw0KNVU1UC9iTGY3MGxLL3dDZFdCLzVVNVAvQUd5Mys5SlN2K2RXQi81VTVQOEEyeTMrOUpTditkV0Ivd0NWT1QvMnkzKzlKU3YrZFdCLw0KNVU1UC9iTGY3MGxOdnBuV3NMcWVVTVZ2VDdhQ1dsMisydG9icDVwS2RwakdWamJXME5ITU5FZmtTVWh5ZjU3RS93Q09QL25xNUpTdQ0Kbi84QUorTi94TmYvQUZJU1U0SDFxTmd6S2RnNmdSNlgvYUl3ejZSK2w3VHFrcHhBL0lhQ0dqcmdCME1QT3Y4QTBVbEx0ZmUwN210Ng0KMkQvV1Ava1VsTm5wM1VMK241WDJvNC9WOGt3UVdYa3VhWjd4dDVTVTZ2OEF6dXUvOHFjei9NUC9BSkZKU3Y4QW5kZC81VTVuK1lmLw0KQUNLU2xmOEFPNjcvQU1xY3ovTVAva1VsSy81M1hmOEFsVG1mNWgvOGlrcFgvTzY3L3dBcWN6L01QL2tVbEsvNTNYZitWT1ovbUgveQ0KS1NsZjg3cnYvS25NL3dBdy93RGtVbEsvNTNYZitWT1ovbUgvQU1pa3BYL082Ny95cHpQOHcvOEFrVWxLL3dDZDEzL2xUbWY1aC84QQ0KSXBLVi93QTdydjhBeXB6UDh3LytSU1VyL25kZC93Q1ZPWi9tSC95S1NsZjg3cnYvQUNwelA4dy8rUlNVci9uZGQvNVU1bitZZi9JcA0KS1YvenV1LzhxY3ovQUREL0FPUlNVci9uZGQvNVU1bitZZjhBeUtTbVR2cmM3YTNaMHJPTGo5SUd1QVBnZFpTVW9mVzEzcGx6dWw1bw0KZlB0YUs1SHpQYjdrbE90MHpPZDFIRkdTNml6R0pjVytuYUlkcDNTVXp5ZjU3RS80NC84QW5xNUpTdW4vQVBKK04veE5mL1VoSlRVNg0KcDBHanF0ekxyY2pKb0xHN0EyaDRZRHFUSmxydGRVbE9MMVQ2dTBkT3BaYlZaMVRNTG5iU3lpd09jTkNaTVZIVFJKVG0vWmYrNmZYZg0Kdi84QVVLU2xmWmYrNmZYZnYvOEFVS1NsZlpmKzZmWGZ2LzhBVUtTbGZaZis2Zlhmdi84QVVLU2xmWmYrNmZYZnYvOEFVS1NsZlpmKw0KNmZYZnYvOEFVS1NuZHIrcCtJK3Ryem1aN1M0QWxwdGJJa2NIOUdrcGwvek53LzhBdWRuL0FQYnpmL1NhU2xmOHpjUC9BTG5aL3dEMg0KODMvMG1rcFgvTTNEL3dDNTJmOEE5dk4vOUpwS1Yvek53LzhBdWRuL0FQYnpmL1NhU2xmOHpjUC9BTG5aL3dEMjgzLzBta3BYL00zRA0KL3dDNTJmOEE5dk4vOUpwS1Yvek53LzhBdWRuL0FQYnpmL1NhU2xmOHpjUC9BTG5aL3dEMjgzLzBta3BYL00zRC93QzUyZjhBOXZOLw0KOUpwS1Yvek53LzhBdWRuL0FQYnpmL1NhU2xmOHpjUC9BTG5aL3dEMjgzLzBta3BYL00zRC93QzUyZjhBOXZOLzlKcEtWL3pOdy84QQ0KdWRuL0FQYnpmL1NhU25XNmQwK3ZwdU1NV3V5MjVvSmR2dWNITzE4d0FrcGxrL3oySi94eC93RFBWeVNsZFA4QStUOGIvaWEvK3BDUw0KbkMrdEdMOW95Nm5mWXN2S2l1TjJNL1kwZTQ2SDJPMVNVNHY3Ti84QU5UMVAvdDcvQU5SSktWK3pmL05UMVA4QTdlLzlSSktWK3pmLw0KQURVOVQvN2Uvd0RVU1NsZnMzL3pVOVQvQU8zdi9VU1NsZnMzL3dBMVBVLyszdjhBMUVrcGQzVFd6N2VsZFVJanZiSC9BS0tLU2xIcA0KcmRvSTZWMVRjZVI2dW4zK2trcDJNVDZvOU95Y2F1KzM3WFE5N1pkVSszM05QZ2ZZRWxKditaWFN2OUxsZjl1LytZcEtWL3pLNlYvcA0KY3IvdDMvekZKUzdmcVowdHBsdDJVQ09ENnY4QTVpa3BUdnFaMHR4bDEyVVNlVDZ2L21LU21YL00vcHU1cmpkbEhhWkUyLzhBbUtTbg0KZFNVcEpTa2xLU1VwSlNrbEtTVXBKU2tsTmZKL25zVC9BSTQvK2Vya2xLNmYvd0FuNDMvRTEvOEFVaEpUZy9XbkErMTVkVC8yWmJuNw0KYTQ5U3U3MGczM0gyeHNja3B4djJOLzhBUS9rLyt4WC9BS2lTVXI5amYvUS9rLzhBc1YvNmlTVXI5amYvQUVQNVAvc1Yvd0Nva2xLLw0KWTMvMFA1UC9BTEZmK29rbEsvWTMvd0JEK1QvN0ZmOEFxSkpTNytsUHMrbjBES2RIRTVYL0FLaVNVcjlrdjI3UDJCbGJmM2Z0V24vbg0KcEpUcjRYVStzZFB4YThQRzZEY0txZ1EwRzhFNmtubjB2TkpUUC9uUjFiL3luUDhBN0VOLzlKcEtWL3pvNnQvNVRuLzJJYi82VFNVdQ0KejZ5OVpzTzFuUlhPUGdMMmsvOEFudEpUUDl2OWUvOEFLSzMvQUxlSC9wTkpUcGRQNmhia1kvcWRRb0dCYnVJRk5qdzQ3Unc2WWJ5aw0KcHMvYWNiL1NzL3poL2VrcFgybkcvd0JLei9PSDk2U2tnSWNBNXBCQjRJNFNVdWtwU1NsSktVa3BTU2xKS2ErVC9QWW4vSEgvQU05WA0KSktWMC93RDVQeHYrSnIvNmtKS2JDU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcA0KU1NsSkthK1QvUFluL0hIL0FNOVhKS1YwL3dENVB4ditKci82a0pLYW5WTXZybVBjeHZTOEZtWFdXeTk3ckdzaDBuU0hPSFpKVFMvYQ0KWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbEsvYVgxdi9BUEtpci90OW4vazBsSy9hWDF2L0FQS2lyL3Q5bi9rMA0KbEsvYVgxdi9BUEtpci90OW4vazBsSy9hWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbEsvYVgxdi9BUEtpci90OQ0Kbi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbEsvYVgxdi9BUEtpci90OW4vazBsSy9hWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaQ0Kci90OW4vazBsSy9hWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbEsvYVgxdi9BUEtpci90OW4vazBsSy9hWDF2Lw0KQVBLaXIvdDluL2swbEsvYVgxdi9BUEtpci90OW4vazBsSy9hWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbEsvYQ0KWDF2L0FQS2lyL3Q5bi9rMGxLL2FYMXYvQVBLaXIvdDluL2swbE92MCszTnV4VzJkUXBHTmVTZDFUWEI0QUIwMUJQWkpTK1QvQUQySg0KL3dBY2YvUFZ5U212MC9xR0FNREdCeWFRUlRYSTlSdjdvODBsTmo5b2RQOEErNU5QL2JqZjcwbEsvYUhUL3dEdVRULzI0Mys5SlN2Mg0KaDAvL0FMazAvd0RiamY3MGxLL2FIVC8rNU5QL0FHNDMrOUpTdjJoMC93RDdrMC85dU4vdlNVcjlvZFAvQU81TlAvYmpmNzBsSy9hSA0KVC84QXVUVC9BTnVOL3ZTVXI5b2RQLzdrMC84QWJqZjcwbEsvYUhUL0FQdVRULzI0Mys5SlN2MmgwLzhBN2swLzl1Ti92U1VyOW9kUA0KL3dDNU5QOEEyNDMrOUpTdjJoMC8vdVRUL3dCdU4vdlNVcjlvZFA4QSs1TlAvYmpmNzBsSy9hSFQvd0R1VFQvMjQzKzlKU3YyaDAvLw0KQUxrMC93RGJqZjcwbEsvYUhULys1TlAvQUc0Mys5SlN2MmgwL3dEN2swLzl1Ti92U1VyOW9kUC9BTzVOUC9iamY3MGxLL2FIVC84QQ0KdVRUL0FOdU4vdlNVcjlvZFAvN2swLzhBYmpmNzBsSy9hSFQvQVB1VFQvMjQzKzlKU3YyaDAvOEE3azAvOXVOL3ZTVXI5b2RQL3dDNQ0KTlA4QTI0Mys5SlRYeWVvWUJ1eFl5YWRMalA2UnYraXQ4MGxQLzlrPTwveG1wR0ltZzppbWFnZT4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDx4bXBUUGc6UGFnZU51bWJlcj4yPC94bXBUUGc6UGFnZU51bWJlcj4NCiAgICAgICAgICAgIDx4bXBHSW1nOmZvcm1hdD5KUEVHPC94bXBHSW1nOmZvcm1hdD4NCiAgICAgICAgICAgIDx4bXBHSW1nOndpZHRoPjI1NjwveG1wR0ltZzp3aWR0aD4NCiAgICAgICAgICAgIDx4bXBHSW1nOmhlaWdodD4yNTY8L3htcEdJbWc6aGVpZ2h0Pg0KICAgICAgICAgICAgPHhtcEdJbWc6aW1hZ2U+LzlqLzRBQVFTa1pKUmdBQkFnRUFTQUJJQUFELzdRQXNVR2h2ZEc5emFHOXdJRE11TUFBNFFrbE5BKzBBQUFBQUFCQUFTQUFBQUFFQQ0KQVFCSUFBQUFBUUFCLys0QUUwRmtiMkpsQUdTQUFBQUFBUVVBQWdBRC85c0FoQUFNQ0FnSUNBZ01DQWdNRUFzTEN4QVVEZzBORGhRWQ0KRWhNVEV4SVlGQklVRkJRVUVoUVVHeDRlSGhzVUpDY25KeWNrTWpVMU5USTdPenM3T3pzN096czdBUTBMQ3hBT0VDSVlHQ0l5S0NFbw0KTWpzeU1qSXlPenM3T3pzN096czdPenM3T3pzN096dEFRRUJBUUR0QVFFQkFRRUJBUUVCQVFFQkFRRUJBUUVCQVFFRC93QUFSQ0FFQQ0KQU1ZREFSRUFBaEVCQXhFQi84UUJRZ0FBQVFVQkFRRUJBUUVBQUFBQUFBQUFBd0FCQWdRRkJnY0lDUW9MQVFBQkJRRUJBUUVCQVFBQQ0KQUFBQUFBQUJBQUlEQkFVR0J3Z0pDZ3NRQUFFRUFRTUNCQUlGQndZSUJRTU1Nd0VBQWhFREJDRVNNUVZCVVdFVEluR0JNZ1lVa2FHeA0KUWlNa0ZWTEJZak0wY29MUlF3Y2xrbFB3NGZGamN6VVdvcktESmtTVFZHUkZ3cU4wTmhmU1ZlSmw4ck9FdzlOMTQvTkdKNVNraGJTVg0KeE5UazlLVzF4ZFhsOVZabWRvYVdwcmJHMXViMk4wZFhaM2VIbDZlM3g5Zm45eEVBQWdJQkFnUUVBd1FGQmdjSEJnSTdBUUFDRVFNaA0KTVJJRVFWRmhjU0lUQlRLQmtSU2hzVUlqd1ZMUjhETWtZdUZ5Z3BKRFV4VmpjelR4SlFZV29yS0RCeVkxd3RKRWsxU2pGMlJGVlRaMA0KWmVMeXM0VEQwM1hqODBhVXBJVzBsY1RVNVBTbHRjWFY1ZlZXWm5hR2xxYTJ4dGJtOWljM1IxZG5kNGVYcDdmSDErZjMvOW9BREFNQg0KQUFJUkF4RUFQd0QwWHAvVDhBNEdNVGpVa21tdVQ2YmYzUjVKS2JIN1A2Zi9BTnhxZisyMi93QnlTbGZzL3AvL0FIR3Avd0MyMi8zSg0KS1YreituLzl4cWYrMjIvM0pLVit6K24vQVBjYW4vdHR2OXlTbGZzL3AvOEEzR3AvN2JiL0FISktWK3orbi84QWNhbi9BTGJiL2NrcA0KWDdQNmYvM0dwLzdiYi9ja3BYN1A2ZjhBOXhxZisyMi8zSktWK3orbi93RGNhbi90dHY4QWNrcFg3UDZmL3dCeHFmOEF0dHY5eVNsZg0Kcy9wLy9jYW4vdHR2OXlTbGZzL3Avd0QzR3AvN2JiL2NrcFg3UDZmL0FOeHFmKzIyL3dCeVNsZnMvcC8vQUhHcC93QzIyLzNKS1Yreg0KK24vOXhxZisyMi8zSktWK3orbi9BUGNhbi90dHY5eVNsZnMvcC84QTNHcC83YmIvQUhKS1YreituLzhBY2FuL0FMYmIvY2twWDdQNg0KZi8zR3AvN2JiL2NrcFg3UDZmOEE5eHFmKzIyLzNKS1YreituL3dEY2FuL3R0djhBY2twWDdQNmYvd0J4cWY4QXR0djl5U2xmcy9wLw0KL2Nhbi90dHY5eVNtdms5UHdCZGl4alU2M0dmMGJmOEFSVytTU214MC93RDVQeHYrSnIvNmtKS2F2VWMycnA5ZHVWZXpJdWFMVzFobQ0KT1NYQ1dOUDBkN1JDU25OLzUxZFAvd0M0WFV2ODAvOEFwWkpTditkWFQvOEF1RjFML05QL0FLV1NVci9uVjAvL0FMaGRTL3pUL3dDbA0Ka2xLLzUxZFAvd0M0WFV2ODAvOEFwWkpTditkWFQvOEF1RjFML05QL0FLV1NVNlhTODNINnJTKzZxdkpvREhiQzI4dVk0NkF5QUxIYQ0KYXBLYnYyZXZ4ZjhBOXVQL0FQSkpLVjlucjhYL0FQYmovd0R5U1NsZlo2L0Yvd0QyNC84QThra3BYMmV2eGY4QTl1UC9BUEpKS1Y5bg0KcjhYL0FQYmovd0R5U1NsZlo2L0Yvd0QyNC84QThra3BYMmV2eGY4QTl1UC9BUEpKS1Y5bnI4WC9BUGJqL3dEeVNTbGZaNi9GL3dEMg0KNC84QThra3BYMmV2eGY4QTl1UC9BUEpKS1Y5bnI4WC9BUGJqL3dEeVNTbGZaNi9GL3dEMjQvOEE4a2twWDJldnhmOEE5dVAvQVBKSg0KS1Y5bnI4WC9BUGJqL3dEeVNTbGZaNi9GL3dEMjQvOEE4a2twYXR1eTk3UVhFYkdHSE9MdFNYL3ZFK0NTbU9UL0FEMkovd0FjZi9QVg0KeVNsZFAvNVB4djhBaWEvK3BDU21kWDg1ZC9YSC9VTVNVbFNVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVQ0KcEpTa2xLU1VwSlNrbEltLzBsLzlSbjViRWxNTW4rZXhQK09QL25xNUpTdW4vd0RKK04veE5mOEExSVNVenEvbkx2NjQvd0NvWWtwSw0Ka3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1JOL3BML3dDb3o4dGlTbUdUL1BZbg0KL0hIL0FNOVhKS1YwL3dENVB4ditKci82a0pLWjFmemwzOWNmOVF4SlNWSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKUw0Ka2xLU1VwSlNrbEtTVXBKU2tsS1NVaWIvQUVsLzlSbjViRWxNTW4rZXhQOEFqai81NnVTVXJwLy9BQ2ZqZjhUWC93QlNFbE0vVHRhOQ0KN3EzdEFlZDBPYVQyRGV6eDRKS1Z0eWYzMmY1aC93RFNpU2xiY245OW4rWWYvU2lTbGJjbjk5bitZZjhBMG9rcFczSi9mWi9tSC8wbw0Ka3BXM0ovZlovbUgvQU5LSktWdHlmMzJmNWgvOUtKS1Z0eWYzMmY1aC93RFNpU2xiY245OW4rWWYvU2lTbGJjbjk5bitZZjhBMG9rcA0KVzNKL2ZaL21ILzBva3BXM0ovZlovbUgvQU5LSktWdHlmMzJmNWgvOUtKS1Z0eWYzMmY1aC93RFNpU2xiY245OW4rWWYvU2lTbGJjbg0KOTluK1lmOEEwb2twVzNKL2ZaL21ILzBva3BXM0ovZlovbUgvQU5LSktWdHlmMzJmNWgvOUtKS1Z0eWYzMmY1aC93RFNpU2xiY245OQ0KbitZZi9TaVNsYmNuOTluK1lmOEEwb2twZXV0N1h1c3NjSEZ3RGZhTnYwZHg3dWQrOGtwSGsvejJKL3h4L3dEUFZ5U2xkUDhBK1Q4Yg0KL2lhLytwQ1NuSjZ0MURMdzh0ek1mQnF5dzZDWDJXTVlSN1crMkhwS2FmN2M2bC81VDQvL0FHL1VrcFg3YzZsLzVUNC8vYjlTU2xmdA0KenFYL0FKVDQvd0QyL1VrcFg3YzZsLzVUNC84QTIvVWtwWDdjNmwvNVQ0Ly9BRy9Va3BYN2M2bC81VDQvL2I5U1NsZnR6cVgvQUpUNA0KL3dEMi9Va3BYN2M2bC81VDQvOEEyL1VrcFg3YzZsLzVUNC8vQUcvVWtwWDdjNmwvNVQ0Ly9iOVNTbGZ0enFYL0FKVDQvd0QyL1VrcA0KWDdjNmwvNVQ0LzhBMi9Va3BYN2M2bC81VDQvL0FHL1VrcFg3YzZsLzVUNC8vYjlTU2xmdHpxWC9BSlQ0L3dEMi9Va3BYN2M2bC81VA0KNC84QTIvVWtwWDdjNmwvNVQ0Ly9BRy9Va3BYN2M2bC81VDQvL2I5U1NsZnR6cVgvQUpUNC93RDIvVWtwWDdjNmwvNVQ0LzhBMi9Vaw0KcFg3YzZsLzVUNC8vQUcvVWtwMk9qWk4yVlc2MjZodUs0Z1RVeHpYamw0bVc2YXBLYldUL0FEMkovd0FjZi9QVnlTbGRQLzVQeHY4QQ0KaWEvK3BDU25tZnJQak52Nmh1ZGlVNU1BRGRia3RvSTBicHRkWXlmaWtweC9zRmYvQUpXWTMvc2V6LzB1a3BYMkN2OEE4ck1iL3dCag0KMmY4QXBkSlN2c0ZmL2xaamYreDdQL1M2U2xmWUsvOEF5c3h2L1k5bi9wZEpTdnNGZi9sWmpmOEFzZXovQU5McEtWOWdyLzhBS3pHLw0KOWoyZitsMGxLK3dWL3dEbFpqZit4N1AvQUV1a3BYMkN2L3lzeHY4QTJQWi82WFNVcjdCWC93Q1ZtTi83SHMvOUxwS1Y5Z3IvQVBLeg0KRy84QVk5bi9BS1hTVXI3QlgvNVdZMy9zZXovMHVrcFgyQ3YvQU1yTWIvMlBaLzZYU1VyN0JYLzVXWTMvQUxIcy93RFM2U2xmWUsvLw0KQUNzeHYvWTluL3BkSlN2c0ZmOEE1V1kzL3Nlei93QkxwS1Y5Z3IvOHJNYi9BTmoyZitsMGxLK3dWLzhBbFpqZit4N1AvUzZTbGZZSw0KL3dEeXN4di9BR1BaL3dDbDBsSyt3Vi8rVm1OLzdIcy85THBLVjlnci93REt6Ry85ajJmK2wwbEsrd1YvK1ZtTi93Q3g3UDhBMHVrcA0KNno2cjFDbkRMQlN6SEdoOU91MFhOK2svWGVITy9La3Awc24rZXhQK09QOEE1NnVTVXJwLy9KK04vd0FUWC8xSVNVOHo5YUthYk9vVA0KWlJpWEVBQUhKeVRRNGFOMERSZFhJODBsT1A4QVpjYi9BTGg5TS84QVk4Lys5U1NsZlpjYi91SDB6LzJQUC92VWtwWDJYRy83aDlNLw0KOWp6L0FPOVNTbGZaY2IvdUgwei9BTmp6L3dDOVNTbGZaY2IvQUxoOU0vOEFZOC8rOVNTbGZaY2IvdUgwei8yUFAvdlVrcFgyWEcvNw0KaDlNLzlqei9BTzlTU2xmWmNiL3VIMHovQU5qei93QzlTU2xmWmNiL0FMaDlNLzhBWTgvKzlTU2xmWmNiL3VIMHovMlBQL3ZVa3BYMg0KWEcvN2g5TS85anovQU85U1NsZlpjYi91SDB6L0FOanovd0M5U1NsZlpjYi9BTGg5TS84QVk4Lys5U1NsZlpjYi91SDB6LzJQUC92VQ0Ka3BYMlhHLzdoOU0vOWp6L0FPOVNTbGZaY2IvdUgwei9BTmp6L3dDOVNTbGZaY2IvQUxoOU0vOEFZOC8rOVNTbGZaY2IvdUgwei8yUA0KUC92VWtwUGhZWFNyTXF0bWZqZE9xeHlUNmoyWnhMZ0lNUVB0SjdwS2RqOWsvVVAvQUVtTC93Q3haLzhBU3lTbGZzbjZoLzZURi84QQ0KWXMvK2xrbE94MHZFd01OcHE2YUFNZHpHUFp0Y1hnN2k4eUhGemtsSjhuK2V4UDhBamovNTZ1U1VycC8vQUNmamY4VFgvd0JTRWxPSA0KMTNwV2JuNXBzeGNQRnltdGhwZGtPZUhBN1dtQnNzWm9rcHpmK2JmVnYvS3JwMytmZC82WFNVci9BSnQ5Vy84QUtycDMrZmQvNlhTVQ0Kci9tMzFiL3lxNmQvbjNmK2wwbEsvd0NiZlZ2L0FDcTZkL24zZitsMGxLLzV0OVcvOHF1bmY1OTMvcGRKU3Y4QW0zMWIvd0FxdW5mNQ0KOTMvcGRKU3YrYmZWdi9LcnAzK2ZkLzZYU1VyL0FKdDlXLzhBS3JwMytmZC82WFNVci9tMzFiL3lxNmQvbjNmK2wwbEpNZjZ0WjV5Sw0KaGxkTHdHMEY3UmFXUHQzQmsrN2JOeDFoSlR1ZjgxUHE5LzNEWi9uUC93REpKS1YvelUrcjMvY05uK2MvL3dBa2twWC9BRFUrcjMvYw0KTm4rYy93RDhra3BYL05UNnZmOEFjTm4rYy84QThra3BYL05UNnZmOXcyZjV6LzhBeVNTbGY4MVBxOS8zRFovblAvOEFKSktWL3dBMQ0KUHE5LzNEWi9uUDhBL0pKS1YvelUrcjMvQUhEWi9uUC9BUEpKS1YvelUrcjMvY05uK2MvL0FNa2twWC9OVDZ2Zjl3MmY1ei8vQUNTUw0KbGY4QU5UNnZmOXcyZjV6L0FQeVNTbTlqVVZZei9zOURkbGRkVmJXTkhZQTJRTlVsS3lmNTdFLzQ0LzhBbnE1SlN1bi9BUEorTi94Tg0KZi9VaEpUUXorcTVtQmt2cnh1bjNaclhFT0w2am8wN1dqYWZhVWxOYi9uSDFYL3lqeXZ2L0FQTUVsSy81eDlWLzhvOHI3LzhBekJKUw0KditjblZmOEF5anl2di84QU1FbEsvd0NjZlZmL0FDanl2djhBL01FbEsvNXg5Vi84bzhyNy93RHpCSlN2K2NmVmYvS1BLKy8vQU13Uw0KVXIvbkgxWC9BTW84cjcvL0FEQkpTdjhBbkgxWC93QW84cjcvQVB6QkpTditjZlZmL0tQSysvOEE4d1NVci9uSDFYL3lqeXZ2L3dETQ0KRWxLLzV4OVYvd0RLUEsrLy93QXdTVXIvQUp4OVYvOEFLUEsrL3dEOHdTVXIvbkgxWC95anl2di9BUE1FbEsvNXg5Vi84bzhyNy84QQ0KekJKU3YrY2ZWZjhBeWp5dnYvOEFNRWxLL3dDY2ZWZi9BQ2p5dnY4QS9NRWxLLzV4OVYvOG84cjcvd0R6QkpTditjZlZmL0tQSysvLw0KQU13U1VyL25IMVgvQU1vOHI3Ly9BREJKU3Y4QW5IMVgvd0FvOHI3L0FQekJKU3YrY2ZWZi9LUEsrLzhBOHdTVTZ1RmZaa2dYMjFPbw0KZStwaGRVLzZUVE5taDRTVXp5ZjU3RS80NC84QW5xNUpTdW4vQVBKK04veE5mL1VoSlR6djFqd3JzblBMNjhISXl3QUFYMFhDb0RSdQ0KaEJyZnFrcHl2MlRrL3dEbFBuZit4WS85SUpLVit5Y24vd0FwODcvMkxIL3BCSlN2MlRrLytVK2Qvd0N4WS84QVNDU2xmc25KL3dESw0KZk8vOWl4LzZRU1VyOWs1UC9sUG5mK3hZL3dEU0NTbGZzbkovOHA4Ny93Qml4LzZRU1VyOWs1UC9BSlQ1My9zV1AvU0NTbGZzbkovOA0KcDg3L0FOaXgvd0NrRWxLL1pPVC9BT1UrZC83RmovMGdrcFg3SnlmL0FDbnp2L1lzZitrRWxLL1pPVC81VDUzL0FMRmovd0JJSktWKw0KeWNuL0FNcDg3LzJMSC9wQkpTdjJUay8rVStkLzdGai9BTklKS1YreWNuL3luenYvQUdMSC9wQkpTdjJUay84QWxQbmYreFkvOUlKSw0KVit5Y24veW56djhBMkxIL0FLUVNVcjlrNVA4QTVUNTMvc1dQL1NDU2xmc25KLzhBS2ZPLzlpeC82UVNVcjlrNVAvbFBuZjhBc1dQLw0KQUVna3BYN0p5ZjhBeW56di9Zc2Yra0VsSy9aT1QvNVQ1My9zV1A4QTBna3A2N29qSDE0bGRiNm40N20wc0Jxc2R2YzJIVzh1aHMvYw0Ka3BzNVA4OWlmOGNmL1BWeVNsZFAvd0NUOGIvaWEvOEFxUWtwNXY2eTRCeTgvZU1BNW0wQWJ4ZUtvMGJwQjVTVTVQN0ZmLzVTdS84QQ0KWXRxU2xmc1Yvd0Q1U3UvOWkycEtWK3hYL3dEbEs3LzJMYWtwWDdGZi93Q1VydjhBMkxha3BYN0ZmLzVTdS84QVl0cVNsZnNWL3dENQ0KU3UvOWkycEtXL1lyL3dEeWxkLzdGdFNVdit4WC93RGxLNy8yTGFrcFg3RmYvd0NVcnY4QTJMYWtwWDdGZi81U3UvOEFZdHFTbGZzVg0KL3dENVN1LzlpMnBLVit4WC93RGxLNy8yTGFrcFg3RmYvd0NVcnY4QTJMYWtwWDdGZi81U3UvOEFZdHFTbGZzVi93RDVTdS85aTJwSw0KVit4WC93RGxLNy8yTGFrcFg3RmYvd0NVcnY4QTJMYWtwWDdGZi81U3UvOEFZdHFTbGZzVi93RDVTdS85aTJwS1YreFgvd0RsSzcvMg0KTGFrcFg3RmYvd0NVcnY4QTJMYWtwN0hvdFJweEtxalVhTnRGWTlJdTM3ZGJOTjNkSlRaeWY1N0Uvd0NPUC9ucTVKU3VuLzhBSitOLw0KeE5mL0FGSVNVODM5WmNJNU9mdkdEWGx3QU43OGdVRWFOMDJteGtwS2NuOWt1LzhBS2lqL0FOam0vd0RwWkpTdjJTNy9BTXFLUC9ZNQ0Kdi9wWkpTdjJTNy95b28vOWptLytsa2xLL1pMdi9LaWovd0JqbS84QXBaSlN2MlM3L3dBcUtQOEEyT2IvQU9sa2xLL1pMdjhBeW9vLw0KOWptLytsa2xLL1pMdi9LaWovMk9iLzZXU1VyOWt1LzhxS1AvQUdPYi93Q2xrbEsvWkx2L0FDb28vd0RZNXY4QTZXU1VyOWt1L3dESw0KaWovMk9iLzZXU1VyOWt1LzhxS1AvWTV2L3BaSlN2MlM3L3lvby84QVk1di9BS1dTVXI5a3UvOEFLaWovQU5qbS93RHBaSlN2MlM3Lw0KQU1xS1AvWTV2L3BaSlN2MlM3L3lvby85am0vK2xrbEsvWkx2L0tpai93QmptLzhBcFpKU3YyUzcvd0FxS1A4QTJPYi9BT2xrbEsvWg0KTHY4QXlvby85am0vK2xrbEsvWkx2L0tpai8yT2IvNldTVXI5a3UvOHFLUC9BR09iL3dDbGtsSy9aTHYvQUNvby93RFk1djhBNldTVQ0KOWowWnBaaTFNTmJhdGxGYmZUYThXQnUwMkNONExwKzlKVFp5ZjU3RS93Q09QL25xNUpTdW4vOEFKK04veE5mL0FGSVNVOHo5YU1mMQ0KdW9idnNlUGxRQU4xK1I2SkdqZEEzMTZwSHlTVTQvMkwvd0ExV0QvN0hmOEF2NGtwWDJML0FNMVdELzdIZisvaVNsZll2L05WZy84QQ0Kc2QvNytKS1haMDk5anhYWDBqQ2U1eGhyVzVza255QXkwbE5qL205MUwvNTM2UDhBMkpmL0FPOVNTbGY4M3VwZi9PL1Ivd0N4TC84QQ0KM3FTVXIvbTkxTC81MzZQL0FHSmYvd0M5U1NsZjgzdXBmL08vUi83RXYvOEFlcEpTditiM1V2OEE1MzZQL1lsLy92VWtwWC9ON3FYLw0KQU03OUgvc1Mvd0Q5NmtsSy93Q2IzVXYvQUozNlAvWWwvd0Q3MUpLVi93QTN1cGYvQUR2MGYreEwvd0QzcVNVci9tOTFMLzUzNlA4QQ0KMkpmL0FPOVNTbGY4M3VwZi9PL1Ivd0N4TC84QTNxU1VyL205MUwvNTM2UC9BR0pmL3dDOVNTbGY4M3VwZi9PL1IvN0V2LzhBZXBKUw0KditiM1V2OEE1MzZQL1lsLy92VWtwWC9ON3FYL0FNNzlIL3NTL3dEOTZrbEsvd0NiM1V2L0FKMzZQL1lsL3dENzFKS1Yvd0EzdXBmLw0KQUR2MGYreEwvd0QzcVNVci9tOTFMLzUzNlA4QTJKZi9BTzlTU25xK2lZeHc4V3ZIZFFNWnphbWwxTFhGNGFYUHRjUUhGejUxUGlrcA0KdFpQODlpZjhjZjhBejFja3BYVC9BUGsvRy80bXYvcVFrcHFadlIrbjUyUTY3T3hQdER0QXgyNkliRGRQcHQ3cEthLy9BRFo2Ri81Vw0KSC9PLzlTcEtWL3paNkYvNVdIL08vd0RVcVNsZjgyZWhmK1ZoL3dBNy93QlNwS1NVZEE2UGpYTXlLT25GbGxiZzVqZzRhRWQ5YlVsTw0KbDZ0bitoZjk3UDhBeWFTbGVyWi9vWC9lei95YVNsZXJaL29YL2V6L0FNbWtwWHEyZjZGLzNzLzhta3BYcTJmNkYvM3Mvd0RKcEtWNg0KdG4raGY5N1AvSnBLVjZ0bitoZjk3UDhBeWFTbGVyWi9vWC9lei95YVNsZXJaL29YL2V6L0FNbWtwWHEyZjZGLzNzLzhta3BYcTJmNg0KRi8zcy93REpwS1Y2dG4raGY5N1AvSnBLVjZ0bitoZjk3UDhBeWFTbGVyWi9vWC9lei95YVNsZXJaL29YL2V6L0FNbWtwWHEyZjZGLw0KM3MvOG1rcFhxMmY2Ri8zcy93REpwS1ZXSHV0Zlk1cFlDMXJRSFJPaGNmelNmM2tsTU1uK2V4UCtPUDhBNTZ1U1VycC8vSitOL3dBVA0KWC8xSVNVMHVyTytzVGJtZnNabERxdHZ2OWFaM1NlTlIyU1UwZlUrdlArancvdlAvQUpKSlN2VSt2UDhBbzhQN3ovNUpKU3ZVK3ZQKw0KancvdlAva2tsSzlUNjgvNlBEKzgvd0Rra2xJemwvWFlHUFN4djh5eEpTdnRmMTIvMFdOL21XSktWOXIrdTMraXh2OEFNc1NVcjdYOQ0KZHY4QVJZMytaWWtwWDJ2NjdmNkxHL3pMRWxLKzEvWGIvUlkzK1pZa3BYMnY2N2Y2TEcvekxFbEsrMS9YYi9SWTMrWllrcFgydjY3Zg0KNkxHL3pMRWxKUFUrdlA4QW84UDhmL0pKS1Y2bjE1LzBlSDk1L3dESkpLVjZuMTUvMGVIOTUvOEFKSktWNm4xNS93QkhoL2VmL0pKSw0KYmZUTGZyRTI5eDYweWtVYkR0OUFPYzdmTFlrRGRwRXBLZFA3Ulg0UC93QzIzLzhBa1VsSyswVitELzhBdHQvL0FKRkpUSnRyWG5hQQ0KNmZOam1qN3lBa3Bta3ByNVA4OWlmOGNmL1BWeVNsZFAvd0NUOGIvaWEvOEFxUWtweitwOVhQVGVxVU12dnFyeEhWazJWdUlGaGQ3Zw0KQzJZRWZOSlN2K2RYUmY4QVR0L3ptLzhBa2tsSy93Q2RYUmY5TzMvT2IvNUpKU3YrZFhSZjlPMy9BRG0vK1NTVXIvblYwWC9UdC96bQ0KL3dEa2tsSy81MWRGL3dCTzMvT2Ivd0NTU1U2VmVTYldOc3JxZTVqd0hOSUxOUWRRZnBwS1g5V3ovUXYrOW4vazBsSzlXei9Rdis5bg0KL2swbEs5V3ovUXYrOW4vazBsSzlXei9Rdis5bi9rMGxKR2t1YkphV253TVQrQktTbDBsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsSw0KU1UxOG4rZXhQK09QL25xNUpTdW4vd0RKK04veE5mOEExSVNVckk2ZmdaYmcvTHhxYjNORUIxdGJYa0R3QmNDa3BGK3hPamY5d01YLw0KQUxaWi93Q1JTVXI5aWRHLzdnWXYvYkxQL0lwS1YreE9qZjhBY0RGLzdaWi81RkpTdjJKMGIvdUJpLzhBYkxQL0FDS1NsZnNUbzMvYw0KREYvN1paLzVGSlRjYTFyR2hqQUd0YUFHdEFnQURnQUpLWFNVcEpTa2xLU1VwSlNNNUZEU1d1c1lDT1FYQ1VsTGZhY2IvU3MvemgvZQ0Ka3BYMm5HLzByUDhBT0g5NlNsZmFjYi9Tcy96aC9la3BYMm5HL3dCS3ovT0g5NlNsZmFjYi9Tcy96aC9la3BYMm5HLzByUDhBT0g5Ng0KU2xmYWNiL1NzL3poL2VrcFgybkcvd0JLei9PSDk2U21UTGFyREZiMnVJNTJrSDhpU21hU212ay96MkoveHgvODlYSktWMC8vQUpQeA0KditKci93Q3BDU25QNnpnZGR5c2hsblNjMXVMV0dROXJwTXVrNmoydTdKS2Mvd0RZL3dCY3YvTGF2N2ovQU9rMGxLL1kvd0Jjdi9MYQ0KdjdqL0FPazBsSy9ZL3dCY3YvTGF2N2ovQU9rMGxLL1kvd0Jjdi9MYXY3ai9BT2swbEsvWS93QmN2L0xhdjdqL0FPazBsSy9ZL3dCYw0Kdi9MYXY3ai9BT2swbEsvWS93QmN2L0xhdjdqL0FPazBsSy9ZL3dCY3YvTGF2N2ovQU9rMGxLL1kvd0Jjdi9MYXY3ai9BT2swbEsvWQ0KL3dCY3YvTGF2N2ovQU9rMGxKRzlOK3VyUUdqcXRNRHhyYVQ5NXBTVXYrei9BSzdmK1dsSC9iVGYvU0tTbGZzLzY3ZitXbEgvQUcwMw0KL3dCSXBLVit6L3J0L3dDV2xIL2JUZjhBMGlrcFg3UCt1My9scFIvMjAzLzBpa3BYN1A4QXJ0LzVhVWY5dE4vOUlwS1Yrei9ydC81YQ0KVWY4QWJUZi9BRWlrcFg3UCt1My9BSmFVZjl0Ti93RFNLU2xmcy82N2YrV2xIL2JUZi9TS1NsZnMvd0N1My9scFIvMjAzLzBpa3BYNw0KUCt1My9scFIvd0J0Ti84QVNLU25aNmJWbjA0amErcFhOeU1nRTdyR0FOQkU2YUJyZTNra3Bsay96MkoveHgvODlYSktWMC8vQUpQeA0KditKci93Q3BDU25uZnJSMVhMeE01bFdQMUFZTFF3U3dzTDl4NTNhVnY4VWxPTiszK3BmK1hyZisyWC8ra1VsSy9iL1V2L0wxdi9iTA0KL3dEMGlrcFg3ZjZsL3dDWHJmOEF0bC8vQUtSU1VyOXY5Uy84dlcvOXN2OEEvU0tTblh3OFg2MlorTXpMeHVyMXVxdEV0SlpFd1k0Tg0KWGtrcE4reWZybi81YTFmNXYvcUpKU3YyVDljLy9MV3IvTi85UkpLVit5ZnJuLzVhMWY1di9xSkpTdjJUOWMvL0FDMXEvd0EzL3dCUg0KSktWK3lmcm4vd0NXdFgrYi93Q29rbEsvWlAxei93RExXci9OL3dEVVNTbGZzbjY1L3dEbHJWL20vd0RxSkpTdjJUOWMvd0R5MXEveg0KZi9VU1NsZnNuNjUvK1d0WCtiLzZpU1VyOWsvWFAveTFxL3pmL1VTU2xmc242NS8rV3RYK2IvNmlTVXI5ay9YUC93QXRhdjhBTi84QQ0KVVNTbGZzbjY1LzhBbHJWL20vOEFxSkpTdjJUOWMvOEF5MXEvemY4QTFFa3BYN0ordWY4QTVhMWY1djhBNmlTVXI5ay9YUDhBOHRhdg0KODMvMUVrcDIrbXR5NjhSdE9kWUxzaW83YkxCdzRuM0FqUWRuSktaNVA4OWlmOGNmL1BWeVNsZFAvd0NUOGIvaWEvOEFxUWtwZGxiSA0KMlhGN1E0N3h5Si9NWWtwSjZOUCtqYjl3U1VyMGFmOEFSdCs0SktWNk5QOEFvMi9jRWxLOUduL1J0KzRKS1pBQm9ob2dEc0VsTHBLVQ0Ka3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcFNTbEpLUlZmemwzOWNmOVF4SlRESi9uc1QvQUk0LytlcmtsSzZmL3dBbg0KNDMvRTEvOEFVaEpUT3IrY3UvcmovcUdKS1NwS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKSw0KVWtwU1NrVlg4NWQvWEgvVU1TVXd5ZjU3RS80NC93RG5xNUpTdW4vOG40My9BQk5mL1VoSlRPcitjdS9yai9xR0pLU3BLVWtwU1NsSg0KS1VrcFNTbEpLVWtwU1NsSktVa3BTU2xKS1VrcFNTbEpLVWtwU1NsSktVa3BTU2tWWDg1ZC9YSC9BRkRFbE1NbitleFArT1AvQUo2dQ0KU1VycC93RHlmamY4VFgvMUlTVXB0MVZkdHpiSHRhZDRNT0lINWpQRkpUUDdUamY2Vm4rY1A3MGxLKzA0MytsWi9uRCs5SlN2dE9OLw0KcFdmNXcvdlNVcjdUamY2Vm4rY1A3MGxLKzA0MytsWi9uRCs5SlN2dE9OL3BXZjV3L3ZTVXI3VGpmNlZuK2NQNzBsSyswNDMrbFovbg0KRCs5SlN2dE9OL3BXZjV3L3ZTVXI3VGpmNlZuK2NQNzBsSyswNDMrbFovbkQrOUpTdnRPTi9wV2Y1dy92U1VyN1RqZjZWbitjUDcwbA0KSyswNDMrbFovbkQrOUpTdnRPTi9wV2Y1dy92U1VyN1RqZjZWbitjUDcwbEsrMDQzK2xaL25EKzlKU3Z0T04vcFdmNXcvdlNVcjdUag0KZjZWbitjUDcwbEsrMDQzK2xaL25EKzlKU3Z0T04vcFdmNXcvdlNVdFE1cjNXdVlRNXBlSUkxQjlqRWxNY24rZXhQOEFqai81NnVTVQ0KcnAvL0FDZmpmOFRYL3dCU0VsTmhKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcA0KSlNrbE5mSi9uc1QvQUk0LytlcmtsSzZmL3dBbjQzL0UxLzhBVWhKVFlTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcA0KSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlRYeWY1N0Uvd0NPUC9ucTVKU3VuLzhBSitOL3hOZi9BRklTVTJFbEtTVXBKU2tsS1NVcA0KSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1UxOG4rZXhQOEFqai81NnVTVXJwLy9BQ2ZqZjhUWA0KL3dCU0VsTmhKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xOZkovbnNULw0KQUk0LytlcmtsSzZmL3dBbjQzL0UxLzhBVWhKVFlTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbEtTVXBKU2tsS1NVcEpTa2xLU1VwSlNrbA0KS1NVcEpTa2xLU1VwSlRYeWY1N0Uvd0NPUC9ucTVKU3VuLzhBSitOL3hOZi9BRklTVTB1clpYMWdvdVkzcEdIWGxWRnN2Yzk0YVE2VA0KcHJZenNrcG8vdEQ2N2Y4QWxYUi8yNjMvQU5MSktWKzBQcnQvNVYwZjl1dC85TEpLViswUHJ0LzVWMGY5dXQvOUxKS1YrMFBydC81Vg0KMGY4QWJyZi9BRXNrcFg3USt1My9BSlYwZjl1dC93RFN5U2xmdEQ2N2YrVmRIL2JyZi9TeVNsZnRENjdmK1ZkSC9icmYvU3lTbGZ0RA0KNjdmK1ZkSC9BRzYzL3dCTEpLViswUHJ0L3dDVmRIL2JyZjhBMHNrcFg3USt1My9sWFIvMjYzLzBza3BYN1ErdTMvbFhSLzI2My8wcw0Ka3BYN1ErdTMvbFhSL3dCdXQvOEFTeVNsZnRENjdmOEFsWFIvMjYzL0FOTEpLViswUHJ0LzVWMGY5dXQvOUxKS1YrMFBydC81VjBmOQ0KdXQvOUxKS1YrMFBydC81VjBmOEFicmYvQUVza3BYN1ErdTMvQUpWMGY5dXQvd0RTeVNsZnRENjdmK1ZkSC9icmYvU3lTbGZ0RDY3Zg0KK1ZkSC9icmYvU3lTbGZ0RDY3ZitWZEgvQUc2My93QkxKS1YrMFBydC93Q1ZkSC9icmY4QTBza3AyZW0yNTkySTJ6cVZMY2ZJSk82dA0KaERnQk9tb2M3dDVwS1paUDg5aWY4Y2YvQUQxY2twcjlQNmhnREF4Z2Nta0VVMXlQVWIrNlBOSlRZL2FIVC84QXVUVC9BTnVOL3ZTVQ0KcjlvZFAvN2swLzhBYmpmNzBsSy9hSFQvQVB1VFQvMjQzKzlKU3YyaDAvOEE3azAvOXVOL3ZTVXI5b2RQL3dDNU5QOEEyNDMrOUpTdg0KMmgwLy91VFQvd0J1Ti92U1VyOW9kUDhBKzVOUC9iamY3MGxLL2FIVC93RHVUVC8yNDMrOUpTdjJoMC8vQUxrMC93RGJqZjcwbEsvYQ0KSFQvKzVOUC9BRzQzKzlKU3YyaDAvd0Q3azAvOXVOL3ZTVXI5b2RQL0FPNU5QL2JqZjcwbEsvYUhULzhBdVRUL0FOdU4vdlNVcjlvZA0KUC83azAvOEFiamY3MGxLL2FIVC9BUHVUVC8yNDMrOUpTdjJoMC84QTdrMC85dU4vdlNVcjlvZFAvd0M1TlA4QTI0Mys5SlN2MmgwLw0KL3VUVC93QnVOL3ZTVXI5b2RQOEErNU5QL2JqZjcwbEsvYUhUL3dEdVRULzI0Mys5SlN2MmgwLy9BTGswL3dEYmpmNzBsSy9hSFQvKw0KNU5QL0FHNDMrOUpTdjJoMC93RDdrMC85dU4vdlNVMThucUdBYnNXTW1uUzR6K2tiL29yZk5KVC9BUC9aPC94bXBHSW1nOmltYWdlPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICA8L3JkZjpTZXE+DQogICAgICA8L3htcDpQYWdlSW5mbz4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiPg0KICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+dXVpZDplZTk0YjkyMi01OTMzLTQ5NGUtOTdlNy1lZjBmNjY1NGViZjE8L3htcE1NOkluc3RhbmNlSUQ+DQogICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjZDOTlBMzZGMUYyMDY4MTE4MjJBODc1OTk3QjVCMEE2PC94bXBNTTpEb2N1bWVudElEPg0KICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjQwRTI0RDREMkMyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+DQogICAgICA8eG1wTU06UmVuZGl0aW9uQ2xhc3M+cHJvb2Y6cGRmPC94bXBNTTpSZW5kaXRpb25DbGFzcz4NCiAgICAgIDx4bXBNTTpIaXN0b3J5Pg0KICAgICAgICA8cmRmOlNlcT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo0MEUyNEQ0RDJDMjA2ODExODIyQUE4MUZDMzY2QkYyMzwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTBUMTM6MTg6MTMtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjQxRTI0RDREMkMyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMFQxMzoyNToyNC0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo0MkUyNEQ0RDJDMjA2ODExODIyQUE4MUZDMzY2QkYyMzwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTBUMTM6MjU6MjQtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjQzRTI0RDREMkMyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMFQxNDowNTo1MC0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo0NEUyNEQ0RDJDMjA2ODExODIyQUE4MUZDMzY2QkYyMzwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTBUMTQ6NTU6MDctMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vOy9tZXRhZGF0YTwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4NCiAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6NDVFMjRENEQyQzIwNjgxMTgyMkFBODFGQzM2NkJGMjM8L3N0RXZ0Omluc3RhbmNlSUQ+DQogICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTExLTEwVDE0OjU5OjE4LTA2OjAwPC9zdEV2dDp3aGVuPg0KICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgSW5EZXNpZ24gNy41PC9zdEV2dDpzb2Z0d2FyZUFnZW50Pg0KICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+LzsvbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjc5QzRENjM3MzkyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMFQxNToyNzoyMS0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3QUM0RDYzNzM5MjA2ODExODIyQUE4MUZDMzY2QkYyMzwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTBUMTU6Mjc6NTQtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjdCQzRENjM3MzkyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMFQxNToyNzo1NC0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3Q0M0RDYzNzM5MjA2ODExODIyQUE4MUZDMzY2QkYyMzwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTBUMTU6MzI6MDEtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vOy9tZXRhZGF0YTwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4NCiAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6REE3Q0NGODUzRDIwNjgxMTgyMkFBODFGQzM2NkJGMjM8L3N0RXZ0Omluc3RhbmNlSUQ+DQogICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTExLTEwVDE1OjM1OjA4LTA2OjAwPC9zdEV2dDp3aGVuPg0KICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgSW5EZXNpZ24gNy41PC9zdEV2dDpzb2Z0d2FyZUFnZW50Pg0KICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+LzsvbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOkUzN0NDRjg1M0QyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMFQxNTo0MzowMy0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo2NDk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTFUMTA6MTI6MjMtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjY1OTlBMzZGMUYyMDY4MTE4MjJBODc1OTk3QjVCMEE2PC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMVQxMDoxMjoyMy0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo2Njk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTFUMTA6MTM6MDctMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vOy9tZXRhZGF0YTwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4NCiAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6Njc5OUEzNkYxRjIwNjgxMTgyMkE4NzU5OTdCNUIwQTY8L3N0RXZ0Omluc3RhbmNlSUQ+DQogICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTExLTExVDEwOjEzOjUwLTA2OjAwPC9zdEV2dDp3aGVuPg0KICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgSW5EZXNpZ24gNy41PC9zdEV2dDpzb2Z0d2FyZUFnZW50Pg0KICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo2ODk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTFUMTA6MTM6NTAtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vOy9tZXRhZGF0YTwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4NCiAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6Njk5OUEzNkYxRjIwNjgxMTgyMkE4NzU5OTdCNUIwQTY8L3N0RXZ0Omluc3RhbmNlSUQ+DQogICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTExLTExVDEwOjE0OjE0LTA2OjAwPC9zdEV2dDp3aGVuPg0KICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgSW5EZXNpZ24gNy41PC9zdEV2dDpzb2Z0d2FyZUFnZW50Pg0KICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+LzsvbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjZBOTlBMzZGMUYyMDY4MTE4MjJBODc1OTk3QjVCMEE2PC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMVQxMDoxNDo1MC0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo2Qjk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTFUMTA6MTU6MDQtMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vbWV0YWRhdGE8L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjZDOTlBMzZGMUYyMDY4MTE4MjJBODc1OTk3QjVCMEE2PC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMVQxMDoxNTowNC0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+DQogICAgICAgICAgPC9yZGY6bGk+DQogICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+DQogICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+DQogICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjA5RjhDMDk4NDAyMDY4MTE4MjJBODc1OTk3QjVCMEE2PC9zdEV2dDppbnN0YW5jZUlEPg0KICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0xMS0xMVQxNTozOS0wNjowMDwvc3RFdnQ6d2hlbj4NCiAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIEluRGVzaWduIDcuNTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4NCiAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi87L21ldGFkYXRhPC9zdEV2dDpjaGFuZ2VkPg0KICAgICAgICAgIDwvcmRmOmxpPg0KICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPg0KICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPg0KICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3Rjg0RjFFMzE4MjA2ODExODIyQTkyQ0U5NzE5M0Q2Qjwvc3RFdnQ6aW5zdGFuY2VJRD4NCiAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMTEtMTJUMDk6NDg6MzktMDY6MDA8L3N0RXZ0OndoZW4+DQogICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBJbkRlc2lnbiA3LjU8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+DQogICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vOy9tZXRhZGF0YTwvc3RFdnQ6Y2hhbmdlZD4NCiAgICAgICAgICA8L3JkZjpsaT4NCiAgICAgICAgPC9yZGY6U2VxPg0KICAgICAgPC94bXBNTTpIaXN0b3J5Pg0KICAgICAgPHhtcE1NOkRlcml2ZWRGcm9tIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4NCiAgICAgICAgPHN0UmVmOmluc3RhbmNlSUQ+eG1wLmlpZDo2Qjk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RSZWY6aW5zdGFuY2VJRD4NCiAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDo2ODk5QTM2RjFGMjA2ODExODIyQTg3NTk5N0I1QjBBNjwvc3RSZWY6ZG9jdW1lbnRJRD4NCiAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjQwRTI0RDREMkMyMDY4MTE4MjJBQTgxRkMzNjZCRjIzPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+DQogICAgICAgIDxzdFJlZjpyZW5kaXRpb25DbGFzcz5kZWZhdWx0PC9zdFJlZjpyZW5kaXRpb25DbGFzcz4NCiAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj4NCiAgICAgIDxkYzpmb3JtYXQ+YXBwbGljYXRpb24vcGRmPC9kYzpmb3JtYXQ+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6cGRmPSJodHRwOi8vbnMuYWRvYmUuY29tL3BkZi8xLjMvIj4NCiAgICAgIDxwZGY6UHJvZHVjZXI+QWRvYmUgUERGIExpYnJhcnkgOS45PC9wZGY6UHJvZHVjZXI+DQogICAgICA8cGRmOlRyYXBwZWQ+RmFsc2U8L3BkZjpUcmFwcGVkPg0KICAgIDwvcmRmOkRlc2NyaXB0aW9uPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOmlkUHJpdj0iaHR0cDovL25zLmFkb2JlLmNvbS94bXAvSW5EZXNpZ24vcHJpdmF0ZSI+DQogICAgICA8aWRQcml2OkRvY0NoYW5nZUNvdW50PjU1MzwvaWRQcml2OkRvY0NoYW5nZUNvdW50Pg0KICAgIDwvcmRmOkRlc2NyaXB0aW9uPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOmFkaG9jd2Y9Imh0dHA6Ly9ucy5hZG9iZS5jb20vQWNyb2JhdEFkaG9jV29ya2Zsb3cvMS4wLyI+DQogICAgICA8YWRob2N3ZjpzdGF0ZT4xPC9hZGhvY3dmOnN0YXRlPg0KICAgICAgPGFkaG9jd2Y6dmVyc2lvbj4xLjE8L2FkaG9jd2Y6dmVyc2lvbj4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgPC9yZGY6UkRGPg0KPC94OnhtcG1ldGE+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQo8P3hwYWNrZXQgZW5kPSJ3Ij8+CmVuZHN0cmVhbQplbmRvYmoKMTUgMCBvYmoKPDwvTGVuZ3RoIDcwL1R5cGUgL1hSZWYvVyBbIDEgMyAxIF0vU2l6ZSAxNi9JRCBbIDwyRUIxMzYyRjkwQTA0ODcwODE1Mzk5MTFGREE5MkY5ND4gPDhDQjBGMEY4QjYwMzE2NDA5NEFBQjA2NTE5OTg3OTM5PiBdL0ZpbHRlciAvRmxhdGVEZWNvZGU+PgpzdHJlYW0KeNpjYAACRsbZ84DE3AwgMe8akFjgDyQWXgYSi0OBxJL7QGJZJJBYfhNIrDwEJO77gIgFQOKBDpB48YyBkal/MwMAvbMTYAplbmRzdHJlYW0KZW5kb2JqCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKc3RhcnR4cmVmCjE2NgolJUVPRgo=",
},
{
"FormSignatureID": "8348574",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "ClickToSign",
"SignedByProducerPartyID": "15"
}
],
"FormCoverageID": "11112875"
},
{
"FormID": "11112877",
"FormName": "Enrollment Confirmation",
"FormNumber": "1007851",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Other",
"FormDataTypeCode": "PDF",
"FormData": "JVBERi0xLjYKJb662+4KOCAwIG9iago8PC9MZW5ndGggMzcxMy9TdWJ0eXBlIC9YTUwvVHlwZSAvTWV0YWRhdGE+PgpzdHJlYW0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4NCjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iPg0KICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyI+DQogICAgICA8cGRmOlByb2R1Y2VyPkFjcm9iYXQgRGlzdGlsbGVyIDUuMCAoV2luZG93cyk8L3BkZjpQcm9kdWNlcj4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPg0KICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MTgrMDA6MDA8L3htcDpDcmVhdGVEYXRlPg0KICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MTgtLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4NCiAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MTgtLTA1OjAwPC94bXA6TWV0YWRhdGFEYXRlPg0KICAgICAgPHhtcDpDcmVhdG9yVG9vbD5CaXRNaXJhY2xlLkRvY290aWMuUGRmIDUuNy45MjMxPC94bXA6Q3JlYXRvclRvb2w+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iPg0KICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+dXVpZDowNmNjZjY3ZC04YTM1LTQ1ZjQtYjYwNS0yY2FjMWI2NjNlYzM8L3htcE1NOkRvY3VtZW50SUQ+DQogICAgICA8eG1wTU06SW5zdGFuY2VJRD51dWlkOjBiYWU0NGIxLWZjM2UtNGQ3OS04ODllLWFiY2FkNzg0NGIwODwveG1wTU06SW5zdGFuY2VJRD4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPg0KICAgICAgPGRjOmZvcm1hdD5hcHBsaWNhdGlvbi9wZGY8L2RjOmZvcm1hdD4NCiAgICAgIDxkYzpjcmVhdG9yPg0KICAgICAgICA8cmRmOlNlcT4NCiAgICAgICAgICA8cmRmOmxpPkx5bGU8L3JkZjpsaT4NCiAgICAgICAgPC9yZGY6U2VxPg0KICAgICAgPC9kYzpjcmVhdG9yPg0KICAgICAgPGRjOnRpdGxlPg0KICAgICAgICA8cmRmOkFsdD4NCiAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1bHQiPk1pY3Jvc29mdCBXb3JkIC0gQmVuZWZpdCBWZXJpZmljYXRpb24uZG9jPC9yZGY6bGk+DQogICAgICAgIDwvcmRmOkFsdD4NCiAgICAgIDwvZGM6dGl0bGU+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6YWRob2N3Zj0iaHR0cDovL25zLmFkb2JlLmNvbS9BY3JvYmF0QWRob2NXb3JrZmxvdy8xLjAvIj4NCiAgICAgIDxhZGhvY3dmOnN0YXRlPjE8L2FkaG9jd2Y6c3RhdGU+DQogICAgICA8YWRob2N3Zjp2ZXJzaW9uPjEuMTwvYWRob2N3Zjp2ZXJzaW9uPg0KICAgIDwvcmRmOkRlc2NyaXB0aW9uPg0KICA8L3JkZjpSREY+DQo8L3g6eG1wbWV0YT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg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",
"FormSignature": {
"FormSignatureID": "8348575",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "Password",
"SignedByEmployeePartyID": "48374430"
},
"FormCoverageID": "11112877"
},
{
"FormID": "11112878",
"FormName": "Greenville ACA Form",
"FormNumber": "1014396",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "EnrollmentConfirmation",
"FormDataTypeCode": "PDF",
"FormData": "JVBERi0xLjYKJb662+4KMSAwIG9iago8PC9MZW5ndGggMzcxNS9TdWJ0eXBlIC9YTUwvVHlwZSAvTWV0YWRhdGE+PgpzdHJlYW0KPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4NCjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iPg0KICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnBkZj0iaHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyI+DQogICAgICA8cGRmOlByb2R1Y2VyPkFjcm9iYXQgRGlzdGlsbGVyIDE5LjAgKFdpbmRvd3MpPC9wZGY6UHJvZHVjZXI+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4NCiAgICAgIDx4bXA6Q3JlYXRvclRvb2w+Qml0TWlyYWNsZS5Eb2NvdGljLlBkZiA1LjcuOTIzMTwveG1wOkNyZWF0b3JUb29sPg0KICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MjAtLTA1OjAwPC94bXA6TW9kaWZ5RGF0ZT4NCiAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDIwLTA0LTI4VDE2OjQyOjIwKzAwOjAwPC94bXA6Q3JlYXRlRGF0ZT4NCiAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMjAtMDQtMjhUMTY6NDI6MjAtLTA1OjAwPC94bXA6TWV0YWRhdGFEYXRlPg0KICAgIDwvcmRmOkRlc2NyaXB0aW9uPg0KICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyI+DQogICAgICA8ZGM6Zm9ybWF0PmFwcGxpY2F0aW9uL3BkZjwvZGM6Zm9ybWF0Pg0KICAgICAgPGRjOnRpdGxlPg0KICAgICAgICA8cmRmOkFsdD4NCiAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1bHQiPk1pY3Jvc29mdCBXb3JkIC0gMjAyMCBPRSBXYXZpZXIgZm9yIEdDU0Q8L3JkZjpsaT4NCiAgICAgICAgPC9yZGY6QWx0Pg0KICAgICAgPC9kYzp0aXRsZT4NCiAgICAgIDxkYzpjcmVhdG9yPg0KICAgICAgICA8cmRmOlNlcT4NCiAgICAgICAgICA8cmRmOmxpPmFkZWFzZTwvcmRmOmxpPg0KICAgICAgICA8L3JkZjpTZXE+DQogICAgICA8L2RjOmNyZWF0b3I+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iPg0KICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+dXVpZDoyMTI1YWI2Yy0yYzc5LTRkY2ItOWZjMS04NzUzM2JjZWYxY2Y8L3htcE1NOkRvY3VtZW50SUQ+DQogICAgICA8eG1wTU06SW5zdGFuY2VJRD51dWlkOmJmMzc3ZDJjLTJlNjQtNDQyMy04NjhiLTQ2MWI4YjgxYzFlMzwveG1wTU06SW5zdGFuY2VJRD4NCiAgICA8L3JkZjpEZXNjcmlwdGlvbj4NCiAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczphZGhvY3dmPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fjcm9iYXRBZGhvY1dvcmtmbG93LzEuMC8iPg0KICAgICAgPGFkaG9jd2Y6dmVyc2lvbj4xLjE8L2FkaG9jd2Y6dmVyc2lvbj4NCiAgICAgIDxhZGhvY3dmOnN0YXRlPjE8L2FkaG9jd2Y6c3RhdGU+DQogICAgPC9yZGY6RGVzY3JpcHRpb24+DQogIDwvcmRmOlJERj4NCjwveDp4bXBtZXRhPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg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",
"FormSignature": {
"FormSignatureID": "8348576",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "Password",
"SignedByEmployeePartyID": "48374430"
},
"FormCoverageID": "11112878"
}
]
}
},
"Audit": {
"AuditID": "5947586",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "2",
"CoverageRiderRecordQuantity": "13"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| EnrollmentInformation | Object | EnrollmentInformation Object |
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EnrollmentMethodCode | EnrollmentMethod | List of ways members enroll into the benefit. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Producer | Object | Producer Object |
| ProducerPartyID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerFirstName | string | The given first name of a Producer (also known as Enroller, Agent, |
| Broker, etc.). | ||
| ProducerLastName | string | The surname of the Producer (also known as Enroller, Agent, Broker, |
| etc.). | ||
| CarrierProducerNumber | string | A carrier-assigned identifier associated with the person or an |
| organization that assists in the buying of or enrolling in insurance. | ||
| CarrierProducerNumberID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierProducerNumber | string | A carrier-assigned identifier associated with the person or an |
| organization that assists in the buying of or enrolling in insurance. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswer | Object | CoverageQuestionAnswer Object |
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| EmployeeForm | Form | The documents collected for a given Employee as part of the Benefits |
| Enrollment process. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormData | base64Binary | Binary to text encoding scheme for the Form Data content. |
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormData | base64Binary | Binary to text encoding scheme for the Form Data content. |
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByProducerPartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormData | base64Binary | Binary to text encoding scheme for the Form Data content. |
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormData | base64Binary | Binary to text encoding scheme for the Form Data content. |
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
"FormSignature": [ { "FormSignatureID": "8348573", "FormSignatureDate": "2020-04-28", "FormSignatureDataTypeCode": "ClickToSign", "SignedByEmployeePartyID": "48374430"
Linked Form
Description
Communicate a form link to Carrier during the Benefits Enrollment process. The linked form may or may not require a signature from an Employee, Dependent, or Producer.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "89c1d0ad-ea89-4239-9078-f1c26d519022",
"SenderName": "ABC Tech Partner",
"SenderPlatformName": "ABC Platform",
"ReceiverName": "XYZ Carrier",
"CreationDateTime": "2020-04-28T21:41:43.9209599Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "6",
"CarrierName": "XYZ Carrier"
},
"Employer": {
"EmployerPartyID": "16901",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "6",
"MasterAgreementNumber": null,
"CarrierID": "6"
},
"EmployerName": "DEMO",
"EmployerAddress": {
"FirstLineAddress": "400 Field Drive",
"CityName": "Lake Forest",
"StateProvinceCode": "IL",
"PostalCode": "60045",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "71867949",
"EmployeeSocialSecurityNumber": "251132064",
"EmployeeIdentifier": "106943",
"EmployeeName": {
"FirstName": "Catherine",
"MiddleName": "T",
"LastName": "Adams"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1972-12-29",
"MaritalStatusCode": "Married",
"EmployeeMobilePhone": "8642280057",
"EmployeeMailingAddress": {
"FirstLineAddress": "711 East Curtis Street",
"CityName": "Simpsonville",
"StateProvinceCode": "SC",
"PostalCode": "29681",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "711 East Curtis Street",
"CityName": "Simpsonville",
"StateProvinceCode": "SC",
"PostalCode": "29681",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "301 Camperdown Way",
"CityName": "Greenville",
"StateProvinceCode": "SC",
"PostalCode": "29602",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2001-08-07",
"MostRecentHireDate": "2001-08-07",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Teacher- Gifted/Talented",
"OccupationText": "Teacher- Gifted/Talented",
"WorkHoursQuantity": "38",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Greenville County School District",
"PayrollDeductionFrequencyQuantity": "24",
"PayrollFrequencyQuantity": "24",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "62728.5",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2001-08-07"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "62728.5",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2001-08-07"
}
]
},
"EnrollmentInformation": {
"EnrollmentInformationID": "151337554",
"EnrollmentMethodCode": "Paper"
},
"Event": {
"EventID": "CE92496404",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-04-28",
"TransactionDate": "2020-04-28"
},
"Dependent": {
"DependentPartyID": "71867950",
"DependentSocialSecurityNumber": null,
"DependentName": {
"FirstName": "BRIAN",
"MiddleName": "A",
"LastName": "ADAMS"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1971-02-19"
},
"Producer": {
"ProducerPartyID": "15",
"ProducerFirstName": "Lyle",
"ProducerLastName": "Griffin",
"CarrierProducerNumber": {
"CarrierProducerNumberID": "6_15",
"CarrierID": "6",
"CarrierProducerNumber": "TMKLNG"
}
},
"Coverage": [
{
"CoverageID": "78956285",
"IndividualPolicyNumber": "S38117",
"ProductTypeCode": "STD",
"BillGroupIdentifier": "1300000000",
"OriginalCoverageEffectiveDate": "2012-02-01",
"CoverageEffectiveDate": "2020-05-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "2700",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "24.96",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "24.96",
"PremiumModeQuantity": "24",
"PreTaxCode": "PostTax",
"CarrierID": "6",
"CoverageInsured": {
"InsuredPartyID": "71867949",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2012-02-01"
},
"CoverageEventID": "CE92496404",
"CoverageQuestionAnswer": [
{
"CoverageQuestionAnswerID": "218255073",
"QuestionIdentifier": "D_902_Occupational_Class",
"AnswerText": "3A",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255074",
"QuestionIdentifier": "PDIP_Job_Title",
"AnswerText": "Teacher- Gifted/Talented",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255078",
"QuestionIdentifier": "TMK_Enrollment_City",
"AnswerText": "Simpsonville",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255079",
"QuestionIdentifier": "D_902_Hours",
"AnswerText": "38.0000",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255080",
"QuestionIdentifier": "D902_Duties",
"AnswerText": "Educator",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255081",
"QuestionIdentifier": "D902_ActivelyAtWork",
"AnswerIndicator": "true",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255084",
"QuestionIdentifier": "TMK_Enrollment_State",
"AnswerText": "SC",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255085",
"QuestionIdentifier": "D902_Underwriting_Type",
"AnswerText": "MGI",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255086",
"QuestionIdentifier": "D902_MissedWork",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255087",
"QuestionIdentifier": "D902_Alcohol",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255088",
"QuestionIdentifier": "D902_Diabetes",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255089",
"QuestionIdentifier": "D902_Back",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255090",
"QuestionIdentifier": "D902_Knee",
"AnswerIndicator": "false",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255091",
"QuestionIdentifier": "DI_UnderwritingType",
"AnswerText": "MGI",
"AnswerPartyID": "71867949"
},
{
"CoverageQuestionAnswerID": "218255092",
"QuestionIdentifier": "TMK_BRAFU",
"AnswerText": "SC",
"AnswerPartyID": "71867949"
}
],
"CoverageRider": {
"CoverageRiderID": "361864850",
"RiderIdentifier": "IC",
"EmployeePremiumContributionAmount": "1.68",
"EmployerPremiumContributionAmount": "0"
}
},
{
"CoverageID": "78394050",
"IndividualPolicyNumber": "JQ2919",
"ProductTypeCode": "CriticalIllness",
"BillGroupIdentifier": "1300000000",
"CoverageEffectiveDate": "2006-08-01",
"CoverageTierCode": "EmployeeSpouse",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "52712",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "43.39",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "43.39",
"PremiumModeQuantity": "24",
"PreTaxCode": "PostTax",
"CarrierID": "6",
"CoverageInsured": [
{
"InsuredPartyID": "71867950",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2006-08-01"
},
{
"InsuredPartyID": "71867949",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2006-08-01"
}
],
"CoverageRider": [
{
"CoverageRiderID": "359987888",
"RiderIdentifier": "PLAN_CODE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "CBO"
},
{
"CoverageRiderID": "359987889",
"RiderIdentifier": "RateBlend",
"CoverageTierCode": "Employee",
"BenefitAmount": "1",
"RiderUnitQuantity": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "359987890",
"RiderIdentifier": "PersistencyFactor",
"CoverageTierCode": "Employee",
"BenefitAmount": "1",
"RiderUnitQuantity": "1",
"RiderOptionIdentifier": "1.1"
},
{
"CoverageRiderID": "359987891",
"RiderIdentifier": "SpouseCoverage",
"CoverageTierCode": "SpouseOnly",
"BenefitAmount": "100",
"RiderUnitQuantity": "100",
"RiderOptionIdentifier": "100"
},
{
"CoverageRiderID": "359987892",
"RiderIdentifier": "ChildCoverage",
"CoverageTierCode": "ChildOnly",
"BenefitAmount": "100",
"RiderUnitQuantity": "100",
"RiderOptionIdentifier": "100"
},
{
"CoverageRiderID": "359987893",
"RiderIdentifier": "ISSUE_STATE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "SC"
},
{
"CoverageRiderID": "359987894",
"RiderIdentifier": "ISSUE_TYPE",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "ST"
},
{
"CoverageRiderID": "359987895",
"RiderIdentifier": "EZVFP",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "Y"
},
{
"CoverageRiderID": "359987896",
"RiderIdentifier": "EZ_VALUE_YEAR",
"CoverageTierCode": "Employee",
"BenefitAmount": "2007",
"RiderUnitQuantity": "2007",
"RiderOptionIdentifier": "2007"
},
{
"CoverageRiderID": "359987897",
"RiderIdentifier": "EZV_STATUS",
"CoverageTierCode": "Employee",
"RiderOptionIdentifier": "M"
},
{
"CoverageRiderID": "359987898",
"RiderIdentifier": "INFORCE_PRF",
"CoverageTierCode": "Employee",
"BenefitAmount": "1.1",
"RiderOptionIdentifier": "1.1"
},
{
"CoverageRiderID": "359987899",
"RiderIdentifier": "HSB",
"CoverageTierCode": "Employee",
"BenefitAmount": "100",
"RiderUnitQuantity": "100"
}
]
}
],
"EmployeeForm": [
{
"FormID": "11112876",
"FormName": "Notice of Information Practices",
"FormNumber": "1011143",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Other",
"FormDataTypeCode": "PDF",
"FormDataGUID": "5ececb7d-31bc-4c28-a601-8e9294902aed",
"FormCoverageID": "11112876"
},
{
"FormID": "11112875",
"FormName": "D-902 E Application for Disability Coverage",
"FormNumber": "1002657",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Application",
"FormDataTypeCode": "PDF",
"FormDataGUID": "43fee109-b9f9-40e6-98d9-7ed27c084969",
"FormSignature": [
{
"FormSignatureID": "8348573",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "ClickToSign",
"SignedByEmployeePartyID": "48374430"
},
{
"FormSignatureID": "8348574",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "ClickToSign",
"SignedByProducerPartyID": "15"
}
],
"FormCoverageID": "11112875"
},
{
"FormID": "11112877",
"FormName": "Enrollment Confirmation",
"FormNumber": "1007851",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "Other",
"FormDataTypeCode": "PDF",
"FormDataGUID": "fbfa018c-8c75-4b93-afe9-0936b2a0afa0",
"FormSignature": {
"FormSignatureID": "8348575",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "Password",
"SignedByEmployeePartyID": "48374430"
},
"FormCoverageID": "11112877"
},
{
"FormID": "11112878",
"FormName": "Greenville ACA Form",
"FormNumber": "1014396",
"FormCreationDate": "2020-04-28",
"FormCompletionDate": "2020-04-28",
"FormTypeCode": "EnrollmentConfirmation",
"FormDataTypeCode": "PDF",
"FormDataGUID": "d0c45fc4-c755-4a20-aca0-cec0116beac6",
"FormSignature": {
"FormSignatureID": "8348576",
"FormSignatureDate": "2020-04-28",
"FormSignatureDataTypeCode": "Password",
"SignedByEmployeePartyID": "48374430"
},
"FormCoverageID": "11112878"
}
]
}
},
"Audit": {
"AuditID": "5947585",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "2",
"CoverageRiderRecordQuantity": "13"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| EnrollmentInformation | Object | EnrollmentInformation Object |
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EnrollmentMethodCode | EnrollmentMethod | List of ways members enroll into the benefit. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Producer | Object | Producer Object |
| ProducerPartyID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerFirstName | string | The given first name of a Producer (also known as Enroller, Agent, |
| Broker, etc.). | ||
| ProducerLastName | string | The surname of the Producer (also known as Enroller, Agent, Broker, |
| etc.). | ||
| CarrierProducerNumber | string | A carrier-assigned identifier associated with the person or an |
| organization that assists in the buying of or enrolling in insurance. | ||
| CarrierProducerNumberID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierProducerNumber | string | A carrier-assigned identifier associated with the person or an |
| organization that assists in the buying of or enrolling in insurance. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswer | Object | CoverageQuestionAnswer Object |
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| EmployeeForm | Form | The documents collected for a given Employee as part of the Benefits |
| Enrollment process. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormDataGUID | string | Global Unique Identifier aka pointer to the form containing the |
| collected data. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormDataGUID | string | Global Unique Identifier aka pointer to the form containing the |
| collected data. | ||
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByProducerPartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormDataGUID | string | Global Unique Identifier aka pointer to the form containing the |
| collected data. | ||
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormName | string | The set of words by which the form is known or referred to. |
| FormNumber | string | The identifier by which the form is uniquely identified. |
| FormCreationDate | date | Date the form was created. |
| FormCompletionDate | date | The date on which the completion of the form is final. |
| FormTypeCode | FormType | Identifies the type of benefit enrollment form. |
| FormDataTypeCode | FormDataType | Identifies the document format. |
| FormDataGUID | string | Global Unique Identifier aka pointer to the form containing the |
| collected data. | ||
| FormSignature | Object | FormSignature Object |
| FormSignatureID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormSignatureDate | date | The date on which the form was signed. |
| FormSignatureDataTypeCode | FormSignatureDataType | Identifies the signature format. |
| SignedByEmployeePartyID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| FormCoverageID | string | A unique identifier for each instance of the object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Issue Age
StackedElection
Description
Communicate elections for an employee who was enrolled in an issue age product a year (or more) ago and is now adding another “stacked” election for Member coverage. This could apply to any type of coverage, including (but not limited to): Critical Illness, Cancer, Whole Life, Individual Term Life, Universal Life, LTD, STD insurance for employees and/or dependents
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "d7b40cae-0061-4eee-b707-78e2d0921fe9",
"SenderName": "XYZ Technology Company",
"SenderPlatformName": "XZY Platform",
"ReceiverName": "ABC Carrier",
"CreationDateTime": "2020-01-11T20:36:28.5369155Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "53",
"CarrierName": "ABC Carrier"
},
"Employer": {
"EmployerPartyID": "3391",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "53",
"MasterAgreementNumber": "20991",
"CarrierID": "53"
},
"EmployerName": "LDEx Associates",
"EmployerAddress": {
"FirstLineAddress": "8178 Front St",
"CityName": "St. Augustine",
"StateProvinceCode": "FL",
"PostalCode": "32209",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "4318879",
"EmployeeSocialSecurityNumber": "897748123",
"EmployeeIdentifier": "813734",
"EmployeeName": {
"FirstName": "Laurie",
"LastName": "Shumer"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1990-01-01",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2019-01-01",
"MostRecentHireDate": "2019-01-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Manager",
"OccupationText": "Manager",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "FLORIDA",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
}
]
},
"Event": [
{
"EventID": "CE4140267",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-01-10",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117336",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "New",
"EventDate": "2020-01-10",
"TransactionDate": "2020-01-11"
},
{
"EventID": "CE4140273",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117344",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DemographicChange",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
}
],
"EmployeeEventID": [
"EE2117336",
"EE2117344"
],
"Dependent": {
"DependentPartyID": "4318880",
"DependentSocialSecurityNumber": "878782341",
"DependentName": {
"FirstName": "Christy",
"LastName": "Shumer"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2014-01-01"
},
"OtherParty": {
"OtherPartyID": "4318879",
"OtherPartySocialSecurityNumber": "897748123",
"OtherPartyPersonName": {
"FirstName": "Laurie",
"LastName": "Shumer"
},
"OtherPartyRelationshipTypeCode": "Self",
"OtherPartyTypeCode": "Person",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1990-01-01"
},
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "3265299",
"Beneficiary": {
"BeneficiaryPartyID": "4318879",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "3265298",
"Beneficiary": {
"BeneficiaryPartyID": "4318880",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
}
],
"Coverage": [
{
"CoverageID": "3265299",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871233",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "46730",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "6",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "6",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265299",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318880",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01"
},
"CoverageEventID": "CE4140267",
"CoverageRider": [
{
"CoverageRiderID": "1952878",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1952902",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1952903",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265298",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871237",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "26.78",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "26.78",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265298",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318879",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01"
},
"CoverageEventID": "CE4140267",
"CoverageRider": [
{
"CoverageRiderID": "1952841",
"RiderIdentifier": "GUADB",
"BenefitAmount": "5000",
"RiderUnitQuantity": "1",
"EmployeePremiumContributionAmount": "4.16",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952842",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "0.82",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952843",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1952868",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1952869",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265302",
"GroupPolicyNumber": "VI745",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2020-04-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "12.74",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "12.74",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318879",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2020-04-01"
},
"CoverageEventID": "CE4140273",
"CoverageRider": [
{
"CoverageRiderID": "1952949",
"RiderIdentifier": "GUADB"
},
{
"CoverageRiderID": "1952950",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "1.28",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952951",
"RiderIdentifier": "GULBR"
}
]
}
]
}
},
"Audit": {
"AuditID": "191989",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "1",
"BeneficiaryGroupRecordQuantity": "2",
"EventRecordQuantity": "4",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "11"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the for this |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this set are production or |
| test . | ||
| TransmissionTypeCode | TransmissionType | The type of contained within the set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Downgrade
Description
Communicate changes for an employee who was enrolled in an issue age product a year (or more) ago and is now cancelling a portion of their election for Member coverage. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "4406bf73-060d-43a9-bea9-456d057a9d33",
"SenderName": "XYZ Technology Company",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Carrier",
"CreationDateTime": "2020-01-11T21:19:50.3670941Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "53",
"CarrierName": "ABC Carrier"
},
"Employer": {
"EmployerPartyID": "3391",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "53",
"MasterAgreementNumber": "20991",
"CarrierID": "53"
},
"EmployerName": "LDEx Associates",
"EmployerAddress": {
"FirstLineAddress": "8178 Front St",
"CityName": "St. Augustine",
"StateProvinceCode": "FL",
"PostalCode": "32209",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "4318889",
"EmployeeSocialSecurityNumber": "897738168",
"EmployeeIdentifier": "813523",
"EmployeeName": {
"FirstName": "Roxanne",
"LastName": "McConnell"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1987-01-01",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "872 Sunshine Blvd.",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2019-01-01",
"MostRecentHireDate": "2019-01-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Manager",
"OccupationText": "Manager",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "FLORIDA",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
}
]
},
"Event": [
{
"EventID": "CE4140275",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117345",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "New",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
}
],
"EmployeeEventID": "EE2117345",
"Dependent": {
"DependentPartyID": "4318890",
"DependentSocialSecurityNumber": "878775639",
"DependentName": {
"FirstName": "Brittany",
"LastName": "McConnell"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2013-07-01"
},
"OtherParty": {
"OtherPartyID": "4318889",
"OtherPartySocialSecurityNumber": "897738168",
"OtherPartyPersonName": {
"FirstName": "Roxanne",
"LastName": "McConnell"
},
"OtherPartyRelationshipTypeCode": "Self",
"OtherPartyTypeCode": "Person",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1987-01-01",
"OtherPartyMailingAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
}
},
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "3265304",
"Beneficiary": {
"BeneficiaryPartyID": "4318889",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "3265303",
"Beneficiary": {
"BeneficiaryPartyID": "4318890",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
}
],
"Coverage": [
{
"CoverageID": "3265305",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G872378",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTerminationDate": "2020-03-31",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "12.74",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "12.74",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318889",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-04-01",
"InsuredCoverageTerminationDate": "2020-03-31"
},
"CoverageEventID": "CE4140275",
"CoverageRider": [
{
"CoverageRiderID": "1953057",
"RiderIdentifier": "GUADB"
},
{
"CoverageRiderID": "1953058",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "1.28",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1953059",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1953084",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1953085",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265304",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871233",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "46730",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "6",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "6",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265304",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318890",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01"
},
"CoverageEventID": "CE4140275",
"CoverageRider": [
{
"CoverageRiderID": "1953023",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1953047",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1953048",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265303",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871225",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2018-02-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "26.78",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "26.78",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265303",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318889",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2018-02-01"
},
"CoverageEventID": "CE4140275",
"CoverageRider": [
{
"CoverageRiderID": "1952986",
"RiderIdentifier": "GUADB",
"BenefitAmount": "5000",
"RiderUnitQuantity": "1",
"EmployeePremiumContributionAmount": "4.16",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952987",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "0.82",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952988",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1953013",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1953014",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
}
]
}
},
"Audit": {
"AuditID": "191993",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "1",
"BeneficiaryGroupRecordQuantity": "2",
"EventRecordQuantity": "2",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "13"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| OtherPartyMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the for this |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this set are production or |
| test . | ||
| TransmissionTypeCode | TransmissionType | The type of contained within the set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| OtherParty | Object | OtherParty Object |
| OtherPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| OtherPartySocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| OtherPartyPersonName | StructuredPersonName | This is a representation of the person entitys name, when the Other |
| Party is a person. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| OtherPartyRelationshipTypeCode | BeneficiaryRelationshipType | Relationship of the party to the employee. |
| OtherPartyTypeCode | PartyType | The kind of party - can be person, estate, charity, trust etc. |
| OtherPartyGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| OtherPartyBirthDate | date | The date on which a person was born. |
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Dependent | Object | Dependent Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "d7b40cae-0061-4eee-b707-78e2d0921fe9",
"SenderName": "XYZ Technology Company",
"SenderPlatformName": "XZY Platform",
"ReceiverName": "ABC Carrier",
"CreationDateTime": "2020-01-11T20:36:28.5369155Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "53",
"CarrierName": "ABC Carrier"
},
"Employer": {
"EmployerPartyID": "3391",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "53",
"MasterAgreementNumber": "20991",
"CarrierID": "53"
},
"EmployerName": "LDEx Associates",
"EmployerAddress": {
"FirstLineAddress": "8178 Front St",
"CityName": "St. Augustine",
"StateProvinceCode": "FL",
"PostalCode": "32209",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "4318879",
"EmployeeSocialSecurityNumber": "897748123",
"EmployeeIdentifier": "813734",
"EmployeeName": {
"FirstName": "Laurie",
"LastName": "Shumer"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1990-01-01",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2019-01-01",
"MostRecentHireDate": "2019-01-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Manager",
"OccupationText": "Manager",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "FLORIDA",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-04-01"
}
]
},
"Event": [
{
"EventID": "CE4140267",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-01-10",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117336",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "New",
"EventDate": "2020-01-10",
"TransactionDate": "2020-01-11"
},
{
"EventID": "CE4140273",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117344",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DemographicChange",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
}
],
"EmployeeEventID": [
"EE2117336",
"EE2117344"
],
"Dependent": {
"DependentPartyID": "4318880",
"DependentSocialSecurityNumber": "878782341",
"DependentName": {
"FirstName": "Christy",
"LastName": "Shumer"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2014-01-01"
},
"OtherParty": {
"OtherPartyID": "4318879",
"OtherPartySocialSecurityNumber": "897748123",
"OtherPartyPersonName": {
"FirstName": "Laurie",
"LastName": "Shumer"
},
"OtherPartyRelationshipTypeCode": "Self",
"OtherPartyTypeCode": "Person",
"OtherPartyGenderCode": "Female",
"OtherPartyBirthDate": "1990-01-01"
},
"BeneficiaryGroup": [
{
"BeneficiaryGroupID": "3265299",
"Beneficiary": {
"BeneficiaryPartyID": "4318879",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
{
"BeneficiaryGroupID": "3265298",
"Beneficiary": {
"BeneficiaryPartyID": "4318880",
"BeneficiaryPartyTypeCode": "Dependent",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
}
],
"Coverage": [
{
"CoverageID": "3265299",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871233",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "46730",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "6",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "6",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265299",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318880",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01"
},
"CoverageEventID": "CE4140267",
"CoverageRider": [
{
"CoverageRiderID": "1952878",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1952902",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1952903",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265298",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871237",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "26.78",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "26.78",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"BeneficiaryGroupID": "3265298",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318879",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01"
},
"CoverageEventID": "CE4140267",
"CoverageRider": [
{
"CoverageRiderID": "1952841",
"RiderIdentifier": "GUADB",
"BenefitAmount": "5000",
"RiderUnitQuantity": "1",
"EmployeePremiumContributionAmount": "4.16",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952842",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "0.82",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952843",
"RiderIdentifier": "GULBR"
},
{
"CoverageRiderID": "1952868",
"RiderIdentifier": "Death_Benefit_Option",
"BenefitAmount": "1",
"RiderOptionIdentifier": "1"
},
{
"CoverageRiderID": "1952869",
"RiderIdentifier": "UW_Mode",
"RiderOptionIdentifier": "GI"
}
]
},
{
"CoverageID": "3265302",
"GroupPolicyNumber": "VI745",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2020-04-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "12.74",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "12.74",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318879",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2020-04-01"
},
"CoverageEventID": "CE4140273",
"CoverageRider": [
{
"CoverageRiderID": "1952949",
"RiderIdentifier": "GUADB"
},
{
"CoverageRiderID": "1952950",
"RiderIdentifier": "GULTC",
"EmployeePremiumContributionAmount": "1.28",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "1952951",
"RiderIdentifier": "GULBR"
}
]
}
]
}
},
"Audit": {
"AuditID": "191989",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "1",
"BeneficiaryGroupRecordQuantity": "2",
"EventRecordQuantity": "4",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "11"
}
}
}
IssueAge-Termination
Description Communicate changes for an employee who was enrolled in an issue age product a year (or more) ago who has now terminated their employment, and all of their election(s) for Member (and dependents) coverage(s) needs to be termed. This could apply to any type of coverage, including (but not limited to): Life, Disability, Hospital, and Critical Illness insurance for employees and/or dependents.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "930da5cf-8e9f-4358-abf0-8430a7939c97",
"SenderName": "XYZ Technology Company",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Carrier",
"CreationDateTime": "2020-01-11T21:31:36.0839980Z",
"TestProductionCode": "Production",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "53",
"CarrierName": "ABC Carrier"
},
"Employer": {
"EmployerPartyID": "3391",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "53",
"MasterAgreementNumber": "20991",
"CarrierID": "53"
},
"EmployerName": "LDEx Associates",
"EmployerAddress": {
"FirstLineAddress": "8178 Front St",
"CityName": "St. Augustine",
"StateProvinceCode": "FL",
"PostalCode": "32209",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "4318891",
"EmployeeSocialSecurityNumber": "897737872",
"EmployeeIdentifier": "673789",
"EmployeeName": {
"FirstName": "Becky",
"LastName": "Nunez"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1989-03-21",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "111 Allstate Drive",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "853 Gator Pkwy.",
"CityName": "Jacksonville",
"StateProvinceCode": "FL",
"PostalCode": "32277",
"CountryCode": "USA"
},
"EmploymentInformation": {
"OriginalHireDate": "2019-01-01",
"MostRecentHireDate": "2019-01-01",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Terminated",
"TerminationDate": "2020-01-05",
"JobTitleText": "Manager",
"OccupationText": "Manager",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "FLORIDA",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "80000",
"IncomeModeCode": "Annual"
}
]
},
"Event": [
{
"EventID": "EE2117348",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "Termination",
"EventDate": "2020-01-05",
"TransactionDate": "2020-01-11"
},
{
"EventID": "EE2117346",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "New",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
},
{
"EventID": "CE4140288",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "Termination",
"EventDate": "2020-01-11",
"TransactionDate": "2020-01-11"
}
],
"EmployeeEventID": [
"EE2117348",
"EE2117346"
],
"Dependent": {
"DependentPartyID": "4318892",
"DependentSocialSecurityNumber": "878709898",
"DependentName": {
"FirstName": "Desiree",
"LastName": "Nunez"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2013-06-21"
},
"Coverage": [
{
"CoverageID": "3265306",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871237",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTerminationDate": "2020-01-05",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "100000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "26.78",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "26.78",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318891",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01",
"InsuredCoverageTerminationDate": "2020-01-05"
},
"CoverageEventID": "CE4140288"
},
{
"CoverageID": "3265307",
"GroupPolicyNumber": "VI745",
"IndividualPolicyNumber": "G871233",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2019-02-01",
"CoverageTerminationDate": "2020-01-05",
"CoverageTierCode": "ChildOnly",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "46730",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "6",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "6",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318892",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-02-01",
"InsuredCoverageTerminationDate": "2020-01-05"
},
"CoverageEventID": "CE4140288"
},
{
"CoverageID": "3265308",
"GroupPolicyNumber": "VI745",
"BenefitPlanIdentifier": "GUL",
"BenefitClassIdentifier": "01",
"CoverageEffectiveDate": "2020-04-01",
"CoverageTerminationDate": "2020-03-31",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "50000",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "12.74",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "12.74",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"CarrierID": "53",
"CoverageInsured": {
"InsuredPartyID": "4318891",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2020-04-01",
"InsuredCoverageTerminationDate": "2020-03-31"
},
"CoverageEventID": "CE4140288"
}
]
}
},
"Audit": {
"AuditID": "191994",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "4",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| TerminationDate | date | The last date of employment for an employee. |
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Changes to personal information
Description
Personal information including but not limited to name, address, email, phone number, and marital status about the Employee, Dependent, Other Party, or Beneficiary has changed and the change does not impact their coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| PrefixCode | Prefix | A letter or group of letters that is added at the beginning of a Name - |
| e.g., Mr., Mrs., Ms., etc. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentIdentifier | string | Unique identifier assigned by the employee. |
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| StudentStatusCode | StudentStatus | A person who is studying at a school or college. |
| BeneficiaryGroup | Object | BeneficiaryGroup Object |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Beneficiary | Object | Beneficiary Object |
| BeneficiaryPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryPartyTypeCode | BeneficiaryPartyType | Identifies whether the Beneficiary Party is the Employee, Dependent, or |
| Other Party. | ||
| Employee | Object | Employee Object |
| BeneficiaryPercent | decimal | The percentage of benefits payable to the beneficiary. |
| BeneficiaryTypeCode | BeneficiaryType | Whether the beneficiary is primary or contingent. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the approved benefit, |
| based on BenefitCalculationMethod. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| EnrollerProducerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ElectedCoverage | Object | ElectedCoverage Object |
| ElectedCoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| ElectedBenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the elected benefit, |
| based on BenefitCalculationMethod. | ||
| ElectedEmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the elected product |
| coverage premium. | ||
| ElectedEmployeePremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employee. |
| ElectedEmployerPremiumContributionAmount | decimal | The amount of product coverage premium contribution from the employer. |
| ElectedTotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| ElectedCoverageInsured | CoverageInsured | The insureds associated with their respective elected benefit plans, |
| for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| Provider | Object | Provider Object |
| ProviderIdentificationNumberText | string | The actual identification number - e.g., 123-45-6789. |
| ProviderName | string | This is a representation of the provider entitys full name. |
| ExistingPatientIndicator | boolean | Indicates whether the CoverageInsured is an existing patient of the |
| provider. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| Provider | Object | Provider Object |
| ProviderIdentificationNumberText | string | The actual identification number - e.g., 123-45-6789. |
| ProviderName | string | This is a representation of the provider entitys full name. |
| ExistingPatientIndicator | boolean | Indicates whether the CoverageInsured is an existing patient of the |
| provider. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| BeneficiaryGroupID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| CoverageRider | Object | CoverageRider Object |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageRiderID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| RiderIdentifier | string | Carrier specific identifier indicating what benefit option/rider |
| elected by the member; i.e., identifier to distinguish between a Hi or Low plan or Gold | ||
| vs. Platinum plan - further breakdown from the benefit plan type. | ||
| RiderName | string | Full name of the rider. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| RiderUnitQuantity | decimal | If rider is offered in incremental units of coverage, number (decimal) |
| of units elected. | ||
| RiderOptionIdentifier | string | Carrier-defined field used to differentiate between different classes |
| of rates. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitEarningsAmount | decimal | Insureds covered earnings. Need to include, as applicable, commissions, |
| bonus, overtime or other compensation on top of basic annual earnings. If additional | ||
| compensation is included need to confirm the time period used to calculate. | ||
| BenefitModeQuantity | int | The frequency of benefit payments to the insured on an annual basis. |
| For example, 52 represents a weekly benefit. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| IssueAgeQuantity | int | Age of the enrolling person when benefits initially became effective. |
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageDeduction | Object | CoverageDeduction Object |
| DeductionTypeCode | DeductionType | The type of deduction taken - e.g., Medical, 401K. |
| DeductionAmount | decimal | The amount to be withheld from the employee’s DI claim payment. The |
| type of deduction taken - e.g., Medical, 401K. | ||
| DeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| DependentEventID | string | A thing that happens or takes place, especially one of importance to a |
| Dependent - e.g., a universal reason for member enrollment such as new hire, annual | ||
| enrollment, qualifying life event. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "5555106c-c731-466a-8235-3377985285ec",
"SenderName": "XZY Tech Company",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Insurance Company",
"CreationDateTime": "2019-01-24T17:34:25.9896511Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "80122606",
"CarrierName": "ABC Insurance Company"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "MA123456",
"MasterAgreementNumber": "9874560",
"CarrierID": "80122606"
},
"EmployerName": "Demo Health LDEx",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"Employee": [
{
"EmployeePartyID": "1772666",
"EmployeeSocialSecurityNumber": "998700290",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"PrefixCode": "Mrs",
"FirstName": "Nina",
"LastName": "McCain"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1974-10-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017588466",
"EmployeeWorkPhone": "6019145568",
"EmployeeMobilePhone": "6012183447",
"EmployeeMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898",
"CountryCode": "USA"
},
"EmployeeEmail": "Nina.McCain@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Assistant Director of Nursing",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "60000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2017-08-18"
}
},
"Event": {
"EventID": "123456",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "Marriage",
"EventDate": "2019-03-22",
"TransactionDate": "2019-03-23"
},
"EmployeeEventID": "123456",
"Dependent": [
{
"DependentPartyID": "12345678",
"DependentSocialSecurityNumber": "998-76-3918",
"DependentIdentifier": "41263918",
"DependentName": {
"FirstName": "Ken",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1965-09-28",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false"
},
{
"DependentPartyID": "123456789",
"DependentSocialSecurityNumber": "998-76-3923",
"DependentIdentifier": "41263923",
"DependentName": {
"FirstName": "Marvin",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Male",
"DependentBirthDate": "1995-03-20",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false",
"StudentStatusCode": "FullTime"
},
{
"DependentPartyID": "1234567890",
"DependentSocialSecurityNumber": "998-76-3930",
"DependentIdentifier": "41263930",
"DependentName": {
"FirstName": "Wendy",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "1997-09-22",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false",
"StudentStatusCode": "FullTime"
},
{
"DependentPartyID": "1234567891",
"DependentSocialSecurityNumber": "998-76-3933",
"DependentIdentifier": "41263933",
"DependentName": {
"FirstName": "Maryann",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Child",
"DependentGenderCode": "Female",
"DependentBirthDate": "2013-08-14",
"DependentMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215",
"CountryCode": "USA"
},
"DisabilityIndicator": "false",
"StudentStatusCode": "NonStudent"
}
],
"BeneficiaryGroup": {
"BeneficiaryGroupID": "1112233",
"Beneficiary": {
"BeneficiaryPartyID": "41263918",
"BeneficiaryPartyTypeCode": "Employee",
"BeneficiaryPercent": "100",
"BeneficiaryTypeCode": "Primary"
}
},
"Coverage": [
{
"CoverageID": "2397495",
"GroupPolicyNumber": "123456",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "HOS-12",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "150000.00",
"BenefitFactor": "0",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "9.83",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "9.83",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PaymentMethodCode": "PayrollDeduction",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"EnrollerProducerPartyID": "12345",
"BeneficiaryGroupID": "1234",
"CarrierID": "80122606",
"ElectedCoverage": {
"ElectedCoverageTierCode": "Employee",
"ElectedBenefitCalculationMethodCode": "FlatAmount",
"ElectedBenefitAmount": "0",
"ElectedBenefitFactor": "0",
"ElectedEmployeeContributionCode": "EmployeePaid",
"ElectedEmployeePremiumContributionAmount": "0",
"ElectedEmployerPremiumContributionAmount": "0",
"ElectedTotalPlanPremiumAmount": "0",
"ElectedCoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01",
"Provider": {
"ProviderIdentificationNumberText": "998-70-0290",
"ProviderName": "BlueCross BlueShield HDHP",
"ExistingPatientIndicator": "true"
}
}
},
"CoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "true",
"InsuredCoverageEffectiveDate": "1957-08-13",
"Provider": {
"ProviderIdentificationNumberText": "String",
"ProviderName": "String",
"ExistingPatientIndicator": "true"
}
},
"CoverageDeduction": {
"DeductionTypeCode": "Medical",
"DeductionAmount": "23.08",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397499",
"GroupPolicyNumber": "123456",
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "STD-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
},
{
"CoverageID": "2397500",
"GroupPolicyNumber": "123457",
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "LTD-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
},
{
"CoverageID": "2397501",
"GroupPolicyNumber": "123457",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "LIF-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"BeneficiaryGroupID": "1112233",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
},
{
"CoverageID": "2397503",
"GroupPolicyNumber": "123458",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "LIF-02",
"BenefitClassIdentifier": "002",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"BeneficiaryGroupID": "1112233",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "12345678",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
},
{
"CoverageID": "2397504",
"GroupPolicyNumber": "123459",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "LIF-03",
"BenefitClassIdentifier": "003",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "ChildOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"BeneficiaryGroupID": "1112233",
"CarrierID": "80122606",
"CoverageInsured": [
{
"InsuredPartyID": "123456789",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "1234567890",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "1234567891",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageDeduction": {
"DeductionTypeCode": "Life",
"DeductionAmount": "0.23",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397505",
"GroupPolicyNumber": "123456",
"ProductTypeCode": "Accident",
"BenefitPlanIdentifier": "ACC-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeFamily",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": [
{
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "12345678",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageDeduction": {
"DeductionTypeCode": "AccidentalDeath&Dismemberment",
"DeductionAmount": "7.16",
"DeductionFrequencyQuantity": "26"
}
},
{
"CoverageID": "2397506",
"GroupPolicyNumber": "123456",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "Employee",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "7.80",
"DeductionFrequencyQuantity": "26"
},
"CoverageRider": [
{
"CoverageRiderID": "123",
"RiderIdentifier": "WB",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0.74",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "126",
"RiderIdentifier": "CTR",
"RiderName": null,
"CoverageTierCode": "ChildOnly",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "124",
"RiderIdentifier": "Tobacco",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "125",
"RiderIdentifier": "Cancer",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0",
"EmployerPremiumContributionAmount": "0"
}
]
},
{
"CoverageID": "2397507",
"GroupPolicyNumber": "123455",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI-02",
"BenefitClassIdentifier": "002",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "SpouseOnly",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PostTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": {
"InsuredPartyID": "12345678",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
"CoverageDeduction": {
"DeductionTypeCode": "Hospitalization",
"DeductionAmount": "13.52",
"DeductionFrequencyQuantity": "26"
},
"CoverageRider": [
{
"CoverageRiderID": "123",
"RiderIdentifier": "WB",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0.74",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "124",
"RiderIdentifier": "Tobacco",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0",
"EmployerPremiumContributionAmount": "0"
},
{
"CoverageRiderID": "125",
"RiderIdentifier": "Cancer",
"RiderName": null,
"CoverageTierCode": "Employee",
"BenefitAmount": "0",
"RiderUnitQuantity": "0",
"RiderOptionIdentifier": "tbd",
"PreTaxCode": "PostTax",
"EmployeePremiumContributionAmount": "0",
"EmployerPremiumContributionAmount": "0"
}
]
},
{
"CoverageID": "2397554",
"GroupPolicyNumber": "12344",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DENT-01",
"BenefitClassIdentifier": "001",
"CoverageEffectiveDate": "2019-04-01",
"CoverageTierCode": "EmployeeSpouse",
"BenefitEarningsAmount": "0",
"BenefitModeQuantity": "0",
"PreTaxCode": "PreTax",
"IssueAgeQuantity": "0",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": [
{
"InsuredPartyID": "1772666",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
},
{
"InsuredPartyID": "12345678",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-04-01"
}
],
"CoverageDeduction": {
"DeductionTypeCode": "Dental",
"DeductionAmount": "18.18",
"DeductionFrequencyQuantity": "26"
}
}
]
},
{
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998704567",
"EmployeeIdentifier": "CE.10",
"EmployeeName": {
"FirstName": "John",
"LastName": "Smith"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1997-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "P.O. Box 123456",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "john.smith@saltmine.com",
"EmployeeAlternateEmail": "john.smith@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-03-20",
"MostRecentHireDate": "2019-03-20",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "45125",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-20"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DemographicChange",
"EventDate": "2019-03-22",
"TransactionDate": "2019-03-23"
},
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Jane",
"LastName": "Smith"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1957-02-23",
"DependentHomePhone": "9183893348",
"DependentMailingAddress": {
"FirstLineAddress": "P.O. Box 123456",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"DependentHomeEmail": "jane.johnson@heyo.com",
"DisabilityIndicator": "false",
"DependentEventID": "NHEVT1234"
},
"Coverage": {
"CoverageID": "2397070",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"CoverageEffectiveDate": "2018-07-23",
"CoverageTierCode": "EmployeeFamily",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "80122606",
"CoverageInsured": [
{
"InsuredPartyID": "1774744",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2018-07-23"
},
{
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25"
}
]
}
},
{
"EmployeePartyID": "1772641",
"EmployeeSocialSecurityNumber": "998700290",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"FirstName": "Claire",
"LastName": "Johnson"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1974-10-03",
"MaritalStatusCode": "LegallySeparated",
"EmployeeHomePhone": "6017588466",
"EmployeeWorkPhone": "6019145568",
"EmployeeMobilePhone": "6012183447",
"EmployeeMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898"
},
"EmployeeEmail": "Nina.McCain@demo-me.com",
"EmployeeAlternateEmail": "ninam1234@cloudmail.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"MostRecentHireDate": "2017-08-18",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Director of Nursing",
"OccupationText": "Director of Nursing",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "60000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-01-01"
}
},
"Event": {
"EventID": "EE735236",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DemographicChange",
"EventDate": "2019-03-01",
"TransactionDate": "2019-03-01"
},
"EmployeeEventID": "EE735236",
"Dependent": {
"DependentPartyID": "1772642",
"DependentSocialSecurityNumber": "998763918",
"DependentName": {
"FirstName": "James",
"LastName": "Johnson"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1965-09-28"
},
"Coverage": {
"CoverageID": "2396572",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "001",
"CoverageEffectiveDate": "2018-01-01",
"CoverageTerminationDate": "2019-01-15",
"CoverageTierCode": "EmployeeSpouse",
"EmployeeContributionCode": "EmployeePartial",
"EmployeePremiumContributionAmount": "18.18",
"EmployerPremiumContributionAmount": "9.26",
"TotalPlanPremiumAmount": "27.44",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"CarrierID": "80122606",
"CoverageInsured": [
{
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2018-01-01"
},
{
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2018-01-01"
}
]
}
}
]
},
"Audit": {
"AuditID": "10001",
"CarrierRecordQuantity": "1",
"EmployeeRecordQuantity": "3",
"DependentRecordQuantity": "6",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "1",
"EventRecordQuantity": "3",
"CoverageRecordQuantity": "15",
"CoverageRiderRecordQuantity": "7"
}
}
}
Changes to employment information
Description
Human Resource related information including but not limited to date of hire, rehire date, job title, and salary about the Employee has changed and the change does not impact their coverage.
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeTobaccoUseCode | TobaccoUse | Identifies whether a person uses tobacco or not. |
| EmployeeHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeWorkPhone | string | An entitys work communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMobilePhone | string | An entitys mobile communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmployeeAlternateEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| ExemptCode | Exempt | Employee is exempt (not eligible) vs. nonexempt (eligible) from |
| overtime. | ||
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkHoursQuantity | decimal | Number of Scheduled hours. DEPRECATED ELEMENT |
| WorkHoursFrequencyCode | WorkHoursFrequency | Mode in which Number of hours worked is calculated. DEPRECATED ELEMENT |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| UnionIndicator | boolean | Indicates whether the Employee is a member of the Union or not. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Dependent | Object | Dependent Object |
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| DependentName | StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | DependentRelationshipType | Relationship of the dependent to the employee. |
| DependentGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| DependentBirthDate | date | The date on which a person was born. |
| DependentHomePhone | string | An entitys home communication point, as defined by the |
| telecommunication services. It includes voice telephone communication. | ||
| DependentMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| DependentHomeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| DisabilityIndicator | boolean | A flag that indicates whether a Person according to a medical opinion |
| is temporarily unable to engage in his or her professional activity, does not engage in | ||
| it, and is not engaged in any other gainful employment. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BenefitSubClassIdentifier | string | A sub-categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PaymentMethodCode | PaymentMethod | The way in which the employee is funding the insurance plan - e.g., |
| payroll deduction, direct bill. | ||
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| TakeOverCoverageIndicator | boolean | Taking a members coverage from previous carrier. |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "942f0d58-4775-49a3-8ae2-6056e5e858c6",
"SenderName": "XYZ Technology Company",
"SenderPlatformName": "XYZ Platform",
"ReceiverName": "ABC Carrier",
"CreationDateTime": "2019-02-22T19:43:35.3307425Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "CarrierX1",
"CarrierName": "ABC Carrier"
},
"Employer": {
"EmployerPartyID": "1520",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "GROUP_NBR",
"MasterAgreementNumber": "abc-1223",
"CarrierID": "CarrierX1"
},
"EmployerName": "ACME INC",
"EmployerAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898"
},
"Employee": [
{
"EmployeePartyID": "1772641",
"EmployeeSocialSecurityNumber": "998700290",
"EmployeeIdentifier": "00291",
"EmployeeName": {
"FirstName": "Nina",
"LastName": "McCain"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1974-10-03",
"MaritalStatusCode": "Married",
"EmployeeHomePhone": "6017588466",
"EmployeeWorkPhone": "6019145568",
"EmployeeMobilePhone": "6012183447",
"EmployeeMailingAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "6 N Glyn Hwy",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "39215"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "31 Riverside Plaza",
"CityName": "Jackson",
"StateProvinceCode": "MS",
"PostalCode": "81898"
},
"EmployeeEmail": "Nina.McCain@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "2017-08-18",
"MostRecentHireDate": "2017-08-18",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Director of Nursing",
"OccupationText": "Director of Nursing",
"WorkLocationText": "Mississippi Medical Center",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "60000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-01-01"
}
},
"Event": {
"EventID": "EE735236",
"EventTypeCode": "Demographic",
"EventTypeReasonCode": "DemographicChange",
"EventDate": "2019-03-01",
"TransactionDate": "2019-03-01"
},
"EmployeeEventID": "EE735236",
"Dependent": {
"DependentPartyID": "1772642",
"DependentSocialSecurityNumber": "998763918",
"DependentName": {
"FirstName": "Ken",
"LastName": "McCain"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Male",
"DependentBirthDate": "1965-09-28"
},
"Coverage": {
"CoverageID": "2396572",
"ProductTypeCode": "Dental",
"BenefitPlanIdentifier": "DPPO",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "001",
"CoverageEffectiveDate": "2018-01-01",
"CoverageTerminationDate": "2019-01-15",
"CoverageTierCode": "EmployeeSpouse",
"EmployeeContributionCode": "EmployeePartial",
"EmployeePremiumContributionAmount": "18.18",
"EmployerPremiumContributionAmount": "9.26",
"TotalPlanPremiumAmount": "27.44",
"PremiumModeQuantity": "26",
"PreTaxCode": "PreTax",
"CarrierID": "CarrierX1",
"CoverageInsured": [
{
"InsuredPartyID": "1772642",
"PrimaryInsuredIndicator": "false",
"InsuredCoverageEffectiveDate": "2018-01-01"
},
{
"InsuredPartyID": "1772641",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2018-01-01"
}
]
}
},
{
"EmployeePartyID": "1774744",
"EmployeeSocialSecurityNumber": "998704567",
"EmployeeIdentifier": "00299",
"EmployeeName": {
"FirstName": "John",
"LastName": "Smith"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1997-04-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257897",
"EmployeeWorkPhone": "4051234567",
"EmployeeMobilePhone": "8005257897",
"EmployeeMailingAddress": {
"FirstLineAddress": "P.O. Box 123456",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "4 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "john.smith@saltmine.com",
"EmployeeAlternateEmail": "john.smith@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-03-18",
"MostRecentHireDate": "2019-03-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "45125",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-03-18"
}
},
"Event": {
"EventID": "NHEVT1234",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "Rehire",
"EventDate": "2019-07-23",
"TransactionDate": "2019-07-23"
},
"EmployeeEventID": "NHEVT1234",
"Dependent": {
"DependentPartyID": "1522222",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Jane",
"LastName": "Smith"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1957-02-23",
"DependentHomePhone": "9183893348",
"DependentMailingAddress": {
"FirstLineAddress": "P.O. Box 123456",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"DependentHomeEmail": "jane.johnson@heyo.com",
"DisabilityIndicator": "false"
},
"Coverage": {
"CoverageID": "2397070",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-07-23",
"CoverageEffectiveDate": "2019-07-23",
"CoverageTierCode": "EmployeeFamily",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "CarrierX1",
"CoverageInsured": [
{
"InsuredPartyID": "1774744",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "1522222",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
}
]
}
},
{
"EmployeePartyID": "1774755",
"EmployeeSocialSecurityNumber": "998704567",
"EmployeeIdentifier": "00238",
"EmployeeName": {
"FirstName": "Donald",
"LastName": "Johnson"
},
"EmployeeGenderCode": "Male",
"EmployeeBirthDate": "1997-05-01",
"MaritalStatusCode": "Married",
"EmployeeTobaccoUseCode": "N",
"EmployeeHomePhone": "8005257898",
"EmployeeWorkPhone": "4051234568",
"EmployeeMobilePhone": "8005257898",
"EmployeeMailingAddress": {
"FirstLineAddress": "P.O. Box 123457",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "12 Thresa Blvd",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "62 Salt Mine Way",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84044"
},
"EmployeeEmail": "don.jonson@saltmine.com",
"EmployeeAlternateEmail": "don.johnson@saltmine2.com",
"EmploymentInformation": {
"OriginalHireDate": "2019-04-18",
"MostRecentHireDate": "2019-04-18",
"ExemptCode": "Exempt",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Head Custodial Engineer",
"OccupationText": "Head Custodial Engineer",
"WorkHoursQuantity": "40",
"WorkHoursFrequencyCode": "Weekly",
"WorkLocationText": "Corporate",
"PayrollDeductionFrequencyQuantity": "26",
"PayrollFrequencyQuantity": "26",
"UnionIndicator": "false",
"EmploymentIncome": {
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "50000",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "2019-07-01"
}
},
"Event": {
"EventID": "NHEVT1235",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "GainOfBenefitStatus",
"EventDate": "2019-07-01",
"TransactionDate": "2019-07-23"
},
"EmployeeEventID": "NHEVT1235",
"Dependent": {
"DependentPartyID": "1522255",
"DependentSocialSecurityNumber": "997-87-8712",
"DependentName": {
"FirstName": "Jane",
"LastName": "Johnson"
},
"DependentRelationshipTypeCode": "Spouse",
"DependentGenderCode": "Female",
"DependentBirthDate": "1957-02-23",
"DependentHomePhone": "9183893348",
"DependentMailingAddress": {
"FirstLineAddress": "P.O. Box 123456",
"CityName": "Atlanta",
"StateProvinceCode": "GA",
"PostalCode": "30334"
},
"DependentHomeEmail": "jane.johnson@heyo.com",
"DisabilityIndicator": "false"
},
"Coverage": {
"CoverageID": "2397070",
"GroupPolicyNumber": "219524",
"ProductTypeCode": "Hospital",
"BenefitPlanIdentifier": "Hospital Indemnity",
"BenefitClassIdentifier": "01",
"BenefitSubClassIdentifier": "003",
"BillGroupIdentifier": "001",
"OriginalCoverageEffectiveDate": "2019-07-23",
"CoverageEffectiveDate": "2019-07-23",
"CoverageTierCode": "EmployeeFamily",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "3.31",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "3.31",
"PaymentMethodCode": "PayrollDeduction",
"PremiumModeQuantity": "26",
"PreTaxCode": "PostTax",
"TobaccoUseIndicator": "false",
"TakeOverCoverageIndicator": "false",
"CarrierID": "CarrierX1",
"CoverageInsured": [
{
"InsuredPartyID": "1774755",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
},
{
"InsuredPartyID": "1522255",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2019-07-25",
"InsuredCoverageTerminationDate": "2019-12-31"
}
]
}
}
]
},
"Audit": {
"AuditID": "20350",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "3",
"DependentRecordQuantity": "3",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "3",
"CoverageRiderRecordQuantity": "0"
}
}
}
Response BEM
AuditInformation
Here is the example response Description
Response-AuditInformation.json
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": [
{
"EntityCode": "Audit",
"EntityReferenceID": "AuditID",
"FieldName": "EmployeeRecordQuantity",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidAuditQuantity",
"MessageText": "EmployeeRecordQuantity is not matching"
},
{
"EntityCode": "Audit",
"EntityReferenceID": "AuditID",
"FieldName": "CoverageRecordQuantity",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidAuditQuantity",
"MessageText": "CoverageRecordQuantity is not matching"
}
],
"Audit": {
"AuditID": "String",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "0",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| FieldName | string | Field Name is an actual element in the object. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| FieldName | string | Field Name is an actual element in the object. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| DependentRecordQuantity | int | A count of Dependent records included in the electronic |
| transmission. | ||
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic |
| transmission. | ||
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. | ||
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Description
InvalidSender
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": {
"EntityCode": "Transmission",
"EntityReferenceID": "T123456789",
"FieldName": "SenderName",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidSender",
"MessageText": "SenderName is Invalid"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevel
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": {
"EmployerPartyID": "1520",
"EmployeePartyID": "1772641",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"FieldName": "ProductTypeCode",
"RemarkStatusCode": "Error",
"MessageText": "ProductTypeCode is missing"
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelCoverageChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "942f0d58-4775-49a3-8ae2-6056e5e858c6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2019-05-10T12:00:00",
"TransactionDetail": {
"EmployerPartyID": "1520",
"EmployeePartyID": "1772641",
"TransactionRemark": {
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "EmploymentInformation",
"FieldName": "EmploymentStatusCode",
"RemarkStatusCode": "Error",
"MessageText": "Employee has been terminated and is no longer active. Unable to process coverage changes."
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelMultiRemarks
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": [
{
"EmployerPartyID": "1234",
"EmployeePartyID": "98456",
"TransactionRemark": [
{
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "98456",
"FieldName": "JobTitleText",
"RemarkStatusCode": "Warning",
"MessageText": "JobTitleText is missing"
},
{
"EntityCode": "Coverage",
"EntityReferenceID": "C987456",
"FieldName": "BenefitPlanIDentifier",
"RemarkStatusCode": "Error",
"MessageText": "BenefitPlanIdentifier is missing"
}
]
},
{
"EmployerPartyID": "1234",
"EmployeePartyID": "99200",
"TransactionRemark": [
{
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "99200",
"FieldName": "JobTitleText",
"RemarkStatusCode": "Warning",
"MessageText": "JobTitleText is missing"
},
{
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"FieldName": "BenefitPlanIDentifier",
"RemarkStatusCode": "Error",
"MessageText": "BenefitPlanIdentifier is missing"
}
]
}
]
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelSalaryChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": {
"EmployerPartyID": null,
"EmployeePartyID": null,
"TransactionRemark": {
"EntityCode": "EmploymentIncome",
"EntityReferenceID": "EmployeePartyID",
"FieldName": "IncomeTypeCode",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidCode",
"MessageText": "IncomeTypeCode is unknown"
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example 'Warning' or 'Error'. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
SchemaValidation
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": {
"EntityCode": "Transmission",
"EntityReferenceID": "99a2f078-10fc-45d0-60b99a6eafad",
"RemarkStatusCode": "Error",
"MessageTypeCode": "SchemaNotSupported",
"MessageText": "Schema version is not supported. Please resend using a compatible schema version."
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
TransmissionSuccess
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Success",
"CreationDateTime": "2001-12-31T12:00:00"
}
}
Description
UnableToCancelOrTerminateCoverage
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV56980",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToCancelOrTerminateCoverage"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessBeneficiaryChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Beneficiary",
"EntityReferenceID": "BEN123",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessBeneficiaryChange"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"BeneficiaryGroupRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessCoverageDecrease
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessCoverageDecrease"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessCoverageIncrease
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessCoverageIncrease",
"MessageText": "Coverage increase exceeds plan limits"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessDemographicChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Employee",
"EntityReferenceID": "EE987456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessDemographicChange"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToReinstateCoverage
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV89756",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToReinstateCoverage",
"MessageText": "Coverage cannot be reinstated without more details"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
SavingsandSpendingAccounts
New Election
Description
Communicate a newly elected SavingsSpendingAccount for the first time during a given plan year. The election may apply to any type of SavingsSpendingAccount plan type, including (but not limited to): FSA, HSA, and/or HRA.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "f63b0b96-1fe1-4325-81ef-ae4412bf4665",
"SenderName": "SELERIX",
"SenderPlatformName": "BenSelect",
"ReceiverName": "Optum",
"CreationDateTime": "2020-07-30T20:11:38.5369773Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "46",
"CarrierName": "OptumHealth Bank"
},
"Employer": {
"EmployerPartyID": "1597",
"FederalEmployerIdentificationNumber": "456789999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "46",
"MasterAgreementNumber": "US878234",
"CarrierID": "46"
},
"EmployerName": "National Health ACA",
"EmployerAddress": {
"FirstLineAddress": "2851 Craig Dr.",
"CityName": "McKinney",
"StateProvinceCode": "TX",
"PostalCode": "75070",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1801408",
"EmployeeSocialSecurityNumber": "998780394",
"EmployeeIdentifier": "80395",
"EmployeeName": {
"FirstName": "Vivian",
"LastName": "Blunt"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1940-03-15",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "2 N Erman Hwy",
"CityName": "Denver",
"StateProvinceCode": "CO",
"PostalCode": "80203",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "2 N Erman Hwy",
"CityName": "Denver",
"StateProvinceCode": "CO",
"PostalCode": "80203",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "6 Main St.",
"CityName": "Denver",
"StateProvinceCode": "CO",
"PostalCode": "98343",
"CountryCode": "USA"
},
"EmployeeEmail": "Vivian.Blunt@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "1983-04-11",
"MostRecentHireDate": "1983-04-11",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Nurse-Charge",
"OccupationText": "Nurse-Charge",
"WorkLocationText": "COLORADO",
"PayrollDeductionFrequencyQuantity": "24",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "51625",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1997-09-29"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "51625",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1997-09-29"
}
]
},
"EnrollmentInformation": {
"EnrollmentInformationID": "1007820",
"EnrollmentMethodCode": "HumanResources",
"EnrollmentCityName": "Denver",
"EnrollmentStateProvinceCode": "CO"
},
"Event": [
{
"EventID": "EE758067",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "Unknown",
"EventDate": "2020-06-24",
"TransactionDate": "2020-06-24"
},
{
"EventID": "CE2921619",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "OpenEnrollment",
"EventDate": "2020-06-24",
"TransactionDate": "2020-06-24"
}
],
"EmployeeEventID": "EE758067",
"Producer": {
"ProducerPartyID": "15",
"ProducerFirstName": "Lyle",
"ProducerLastName": "Griffin",
"ProducerLicense": {
"ProducerLicenseID": "0_15",
"ProducerLicenseTypeCode": "LifeHealth",
"ProducerLicenseStateProvinceCode": "CO",
"ProducerLicenseNumber": "LG_LIC"
}
},
"Coverage": {
"CoverageID": "2427302",
"GroupPolicyNumber": "87898",
"ProductTypeCode": "SavingsSpendingAccounts",
"BenefitPlanIdentifier": "HSA",
"BenefitClassIdentifier": "01",
"BillGroupIdentifier": "01",
"CoverageEffectiveDate": "2020-10-01",
"CoverageTierCode": "Employee",
"EmployeeContributionCode": "EmployeePartial",
"EmployeePremiumContributionAmount": "180",
"EmployerPremiumContributionAmount": "50",
"TotalPlanPremiumAmount": "230",
"PremiumModeQuantity": "24",
"PreTaxCode": "PreTax",
"CarrierID": "46",
"CoverageInsured": {
"InsuredPartyID": "1801408",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2020-10-01"
},
"CoverageEventID": "CE2921619",
"CoverageQuestionAnswer": [
{
"CoverageQuestionAnswerID": "1000871",
"QuestionIdentifier": "OHB_045_0130_Verification_Code",
"AnswerText": "Jones",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000872",
"QuestionIdentifier": "OHB_045_0130_Card2",
"AnswerIndicator": "false",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000885",
"QuestionIdentifier": "OHB_045_0130_HDHP_Carrier",
"AnswerText": "United Healthcare",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000886",
"QuestionIdentifier": "OHB_045_0130_HDHP_Group_Number",
"AnswerText": "123456",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000887",
"QuestionIdentifier": "OHB_045_0130_HDHP_Through_ER",
"AnswerIndicator": "true",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000888",
"QuestionIdentifier": "OHB_045_0130_HDHP_MemberID",
"AnswerText": "None",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000889",
"QuestionIdentifier": "OHB_045_0130_HDHP_Eff",
"AnswerText": "10/1/2020 12:00:00 AM",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000890",
"QuestionIdentifier": "OHB_045_0130_HDHP_Tier",
"AnswerText": "Family",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000891",
"QuestionIdentifier": "OHB_045_0130_HDHP_Employer",
"AnswerText": "National Health ACA",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000893",
"QuestionIdentifier": "OHB_045_0130_HDHP_IdentificationNo",
"AnswerText": "879987872",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000894",
"QuestionIdentifier": "OHB_045_0130_HDHP_IssueState",
"AnswerText": "GA",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000895",
"QuestionIdentifier": "OHB_045_0130_Identification_Type",
"AnswerText": "DL",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000897",
"QuestionIdentifier": "OHB_045_0130_DepositAmt",
"AnswerText": "0",
"AnswerPartyID": "1801408"
},
{
"CoverageQuestionAnswerID": "1000898",
"QuestionIdentifier": "OHB_045_0130_OpeningDepositEnclosed",
"AnswerIndicator": "false",
"AnswerPartyID": "1801408"
}
],
"CoverageCommissionSplit": {
"CarrierProducerNumberID": "46_15",
"CompensationSplitPercent": "100"
},
"EnrollmentInformationID": "1007820",
"CoverageContribution": {
"ContributionLimitTypeCode": "Single",
"PlanYearEmployeeContributionAmount": "4320",
"PlanYearEmployerContributionAmount": "1200",
"ToDateEmployeeContributionAmount": "0",
"ToDateEmployerContributionAmount": "0",
"ContributionsRemainingQuantity": "24"
}
}
}
},
"Audit": {
"AuditID": "21946",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "2",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| EnrollmentInformation | Object | EnrollmentInformation Object |
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EnrollmentMethodCode | EnrollmentMethod | List of ways members enroll into the benefit. |
| EnrollmentCityName | string | The city for the enrollment. |
| EnrollmentStateProvinceCode | StateProvince | The state/province for the enrollment. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Producer | Object | Producer Object |
| ProducerPartyID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerFirstName | string | The given first name of a Producer (also known as Enroller, Agent, |
| Broker, etc.). | ||
| ProducerLastName | string | The surname of the Producer (also known as Enroller, Agent, Broker, |
| etc.). | ||
| ProducerLicense | Object | ProducerLicense Object |
| ProducerLicenseID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerLicenseTypeCode | ProducerLicenseType | The category of insurance covered under the assigned license. |
| ProducerLicenseStateProvinceCode | StateProvince | The state in which the license was issued. |
| ProducerLicenseNumber | string | The number issued by the States Insurance division or department to |
| sell insurance in that state. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswer | Object | CoverageQuestionAnswer Object |
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerText | string | The actual textual response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageQuestionAnswerID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| QuestionIdentifier | string | Unique identifier defined by the carrier with the actual question |
| presented to the employee. | ||
| AnswerIndicator | boolean | A flag response to a question. |
| AnswerPartyID | string | A unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageCommissionSplit | CoverageCompensationSplit | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| CarrierProducerNumberID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CompensationSplitPercent | decimal | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageContribution | Object | CoverageContribution Object |
| ContributionLimitTypeCode | ContributionLimitType | The contribution limits used to determine maximum limit. |
| PlanYearEmployeeContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employee. Note that in some instances a plan year may be less or more than 12 months. | ||
| PlanYearEmployerContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employer. Note that in some instances a plan year may be less or more than 12 months. | ||
| ToDateEmployeeContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employee. | ||
| ToDateEmployerContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employer. | ||
| ContributionsRemainingQuantity | int | The number of contributions still to be made. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Change Election
Description
Communicate changes that do not result in a cancellation / termination to a currently elected SavingsSpendingAccount during a given plan year. The election may apply to any type of SavingsSpendingAccount plan type, including (but not limited to): FSA, HSA, and/or HRA.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "f26e1b60-ad0c-47cd-946a-3ed08c044401",
"SenderName": "SELERIX",
"SenderPlatformName": "BenSelect",
"ReceiverName": "Optum",
"CreationDateTime": "2020-07-30T20:17:29.5656795Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "22",
"CarrierName": "Flex America"
},
"Employer": {
"EmployerPartyID": "1597",
"FederalEmployerIdentificationNumber": "456789999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "22",
"MasterAgreementNumber": null,
"CarrierID": "22"
},
"EmployerName": "National Health ACA",
"EmployerAddress": {
"FirstLineAddress": "2851 Craig Dr.",
"CityName": "McKinney",
"StateProvinceCode": "TX",
"PostalCode": "75070",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1801316",
"EmployeeSocialSecurityNumber": "998781568",
"EmployeeIdentifier": "81569",
"EmployeeName": {
"FirstName": "Bertha",
"LastName": "Bachus"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1960-02-23",
"MaritalStatusCode": "Married",
"EmployeeMailingAddress": {
"FirstLineAddress": "1102 N Ralph Hwy",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84114",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "1102 N Ralph Hwy",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "84114",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "34 Main St.",
"CityName": "Salt Lake City",
"StateProvinceCode": "UT",
"PostalCode": "87348",
"CountryCode": "USA"
},
"EmployeeEmail": "Bertha.Bachus@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "1978-06-03",
"MostRecentHireDate": "1978-06-03",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Active",
"JobTitleText": "Rad Tech",
"OccupationText": "Rad Tech",
"WorkLocationText": "UTAH",
"PayrollDeductionFrequencyQuantity": "24",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "41600",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1978-06-03"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "41600",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1978-06-03"
}
]
},
"EnrollmentInformation": {
"EnrollmentInformationID": "1009480",
"EnrollmentMethodCode": "HumanResources",
"EnrollmentCityName": "Salt Lake City",
"EnrollmentStateProvinceCode": "UT"
},
"Event": {
"EventID": "CE2921626",
"EventTypeCode": "Coverage",
"EventTypeReasonCode": "LossOfSpousesBenefitEligibility",
"EventDate": "2020-06-26",
"TransactionDate": "2020-06-26"
},
"Producer": {
"ProducerPartyID": "15",
"ProducerFirstName": "Lyle",
"ProducerLastName": "Griffin",
"ProducerLicense": {
"ProducerLicenseID": "0_15",
"ProducerLicenseTypeCode": "LifeHealth",
"ProducerLicenseStateProvinceCode": "UT",
"ProducerLicenseNumber": "LG_LIC"
}
},
"Coverage": {
"CoverageID": "2427308",
"GroupPolicyNumber": "2348752",
"ProductTypeCode": "SavingsSpendingAccounts",
"BenefitPlanIdentifier": "DFSA",
"BenefitClassIdentifier": "01",
"BillGroupIdentifier": "01",
"OriginalCoverageEffectiveDate": "2019-10-01",
"CoverageEffectiveDate": "2020-07-01",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "1025",
"EmployeeContributionCode": "EmployeePartial",
"EmployeePremiumContributionAmount": "25",
"EmployerPremiumContributionAmount": "1.5",
"TotalPlanPremiumAmount": "26.5",
"PremiumModeQuantity": "24",
"PreTaxCode": "PreTax",
"CarrierID": "22",
"CoverageInsured": {
"InsuredPartyID": "1801316",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-10-01"
},
"CoverageEventID": "CE2921626",
"CoverageCommissionSplit": {
"CarrierProducerNumberID": "22_15",
"CompensationSplitPercent": "100"
},
"EnrollmentInformationID": "1009480",
"CoverageContribution": {
"ContributionLimitTypeCode": "Single",
"PlanYearEmployeeContributionAmount": "600",
"PlanYearEmployerContributionAmount": "36",
"ToDateEmployeeContributionAmount": "475",
"ToDateEmployerContributionAmount": "28.5",
"ContributionsRemainingQuantity": "5"
}
}
}
},
"Audit": {
"AuditID": "21949",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| EnrollmentInformation | Object | EnrollmentInformation Object |
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EnrollmentMethodCode | EnrollmentMethod | List of ways members enroll into the benefit. |
| EnrollmentCityName | string | The city for the enrollment. |
| EnrollmentStateProvinceCode | StateProvince | The state/province for the enrollment. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| Coverage | Object | Coverage Object |
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| Producer | Object | Producer Object |
| ProducerPartyID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerFirstName | string | The given first name of a Producer (also known as Enroller, Agent, |
| Broker, etc.). | ||
| ProducerLastName | string | The surname of the Producer (also known as Enroller, Agent, Broker, |
| etc.). | ||
| ProducerLicense | Object | ProducerLicense Object |
| ProducerLicenseID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerLicenseTypeCode | ProducerLicenseType | The category of insurance covered under the assigned license. |
| ProducerLicenseStateProvinceCode | StateProvince | The state in which the license was issued. |
| ProducerLicenseNumber | string | The number issued by the States Insurance division or department to |
| sell insurance in that state. | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| OriginalCoverageEffectiveDate | date | Initial coverage effective date for the enrollment in the associated |
| benefit plan. Date will not change as long as policy remains in force. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageCommissionSplit | CoverageCompensationSplit | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| CarrierProducerNumberID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CompensationSplitPercent | decimal | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageContribution | Object | CoverageContribution Object |
| ContributionLimitTypeCode | ContributionLimitType | The contribution limits used to determine maximum limit. |
| PlanYearEmployeeContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employee. Note that in some instances a plan year may be less or more than 12 months. | ||
| PlanYearEmployerContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employer. Note that in some instances a plan year may be less or more than 12 months. | ||
| ToDateEmployeeContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employee. | ||
| ToDateEmployerContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employer. | ||
| ContributionsRemainingQuantity | int | The number of contributions still to be made. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Existing Account Cancelation / Termination
Description
Communicate cancellation / termination elections for a SavingsSpendingAccount during a given plan year. The election may apply to any type of SavingsSpendingAccount plan type, including (but not limited to): FSA, HSA, and/or HRA.
{
"bem:Transmission": {
"@xmlns:bem": "https://ldex.limra.com/xsd/1.0/LDExBEM",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExBEM_1.3.2022.01.01.xsd",
"TransmissionGUID": "9824059f-374a-428c-b4da-881cc14807ca",
"SenderName": "SELERIX",
"SenderPlatformName": "BenSelect",
"ReceiverName": "Optum",
"CreationDateTime": "2020-07-30T20:50:32.0071625Z",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.3.2022.01.01",
"Carrier": {
"CarrierID": "22",
"CarrierName": "Flex America"
},
"Employer": {
"EmployerPartyID": "1597",
"FederalEmployerIdentificationNumber": "456789999",
"CarrierMasterAgreementNumber": {
"CarrierMasterAgreementNumberID": "22",
"MasterAgreementNumber": null,
"CarrierID": "22"
},
"EmployerName": "National Health ACA",
"EmployerAddress": {
"FirstLineAddress": "2851 Craig Dr.",
"CityName": "McKinney",
"StateProvinceCode": "TX",
"PostalCode": "75070",
"CountryCode": "USA"
},
"Employee": {
"EmployeePartyID": "1801424",
"EmployeeSocialSecurityNumber": "998780796",
"EmployeeIdentifier": "80797",
"EmployeeName": {
"FirstName": "Laura",
"LastName": "Bonner"
},
"EmployeeGenderCode": "Female",
"EmployeeBirthDate": "1949-09-09",
"MaritalStatusCode": "Unknown",
"EmployeeMailingAddress": {
"FirstLineAddress": "7 S Helmuth St",
"CityName": "Baton Rouge",
"StateProvinceCode": "LA",
"PostalCode": "70804",
"CountryCode": "USA"
},
"EmployeeHomeAddress": {
"FirstLineAddress": "7 S Helmuth St",
"CityName": "Baton Rouge",
"StateProvinceCode": "LA",
"PostalCode": "70804",
"CountryCode": "USA"
},
"EmployeeWorkAddress": {
"FirstLineAddress": "987 Main St.",
"CityName": "Baton Rouge",
"StateProvinceCode": "LA",
"PostalCode": "87348",
"CountryCode": "USA"
},
"EmployeeEmail": "Laura.Bonner@demo-me.com",
"EmploymentInformation": {
"OriginalHireDate": "1981-08-17",
"MostRecentHireDate": "1981-08-17",
"EmploymentTypeCode": "FullTime",
"EmploymentStatusCode": "Terminated",
"TerminationDate": "2020-06-28",
"TerminationReasonCode": "Layoff",
"JobTitleText": "RN",
"OccupationText": "RN",
"WorkLocationText": "LOUISIANA",
"PayrollDeductionFrequencyQuantity": "24",
"PayrollFrequencyQuantity": "26",
"EmploymentIncome": [
{
"IncomeTypeCode": "Salary",
"IncomeAmount": "31200",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1981-08-17"
},
{
"IncomeTypeCode": "BenefitSalary",
"IncomeAmount": "31200",
"IncomeModeCode": "Annual",
"IncomeEffectiveDate": "1981-08-17"
}
]
},
"EnrollmentInformation": {
"EnrollmentInformationID": "1007055",
"EnrollmentMethodCode": "InternetOrSelfService"
},
"Event": {
"EventID": "EE758860",
"EventTypeCode": "Employment",
"EventTypeReasonCode": "Termination",
"EventDate": "2020-06-28",
"TransactionDate": "2020-06-30"
},
"EmployeeEventID": "EE758860",
"Producer": {
"ProducerPartyID": "15",
"ProducerFirstName": "Lyle",
"ProducerLastName": "Griffin"
},
"Coverage": {
"CoverageID": "2424454",
"GroupPolicyNumber": "2348752",
"ProductTypeCode": "SavingsSpendingAccounts",
"BenefitPlanIdentifier": "HFSA",
"BenefitClassIdentifier": "01",
"BillGroupIdentifier": "01",
"CoverageEffectiveDate": "2019-10-01",
"CoverageTerminationDate": "2020-06-28",
"CoverageTierCode": "Employee",
"BenefitCalculationMethodCode": "FlatAmount",
"BenefitAmount": "300",
"EmployeeContributionCode": "EmployeePaid",
"EmployeePremiumContributionAmount": "12.5",
"EmployerPremiumContributionAmount": "0",
"TotalPlanPremiumAmount": "12.5",
"PremiumModeQuantity": "24",
"PreTaxCode": "PreTax",
"CarrierID": "22",
"CoverageInsured": {
"InsuredPartyID": "1801424",
"PrimaryInsuredIndicator": "true",
"InsuredCoverageEffectiveDate": "2019-10-01",
"InsuredCoverageTerminationDate": "2020-06-28"
},
"CoverageEventID": "EE758860",
"CoverageCommissionSplit": {
"CarrierProducerNumberID": "22_15",
"CompensationSplitPercent": "100"
},
"EnrollmentInformationID": "1007055",
"CoverageContribution": {
"ContributionLimitTypeCode": "Single",
"PlanYearEmployeeContributionAmount": "300",
"PlanYearEmployerContributionAmount": "0",
"ToDateEmployeeContributionAmount": "237.5",
"ToDateEmployerContributionAmount": "0",
"ContributionsRemainingQuantity": "5"
}
}
}
},
"Audit": {
"AuditID": "21953",
"CarrierRecordQuantity": "1",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "1",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Carrier | Object | Carrier Object |
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CarrierName | string | The distinctive designation of the entity sending or receiving the data |
| in this transmission. | ||
| Employer | Object | Employer Object |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FederalEmployerIdentificationNumber | string | A nine-digit unique number assigned by the Internal Revenue Service |
| (IRS) to businesses operating in the United States. | ||
| CarrierMasterAgreementNumber | Object | CarrierMasterAgreementNumber Object |
| CarrierMasterAgreementNumberID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| EmployerAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, for the Employer (aka Plan Sponsor). | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| Employee | Object | Employee Object |
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S. citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| EmployeeGenderCode | Gender | Value designating the range of characteristics pertaining to, and |
| differentiating between, masculinity and femininity. Depending on the context, these | ||
| characteristics may include biological sex, sex-based social structures, or gender | ||
| identity. | ||
| EmployeeBirthDate | date | The date on which a person was born. |
| MaritalStatusCode | MaritalStatus | Any of several distinct options that describe a persons relationship |
| with a significant other - e.g., married, single, divorced, and widowed are examples of | ||
| civil status. | ||
| EmployeeMailingAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient usually lives or works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeHomeAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient lives. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeWorkAddress | PostalAddress | An address used for the delivery of letters and packages by an external |
| mailing or packaging service, at a place where the recipient works. | ||
| FirstLineAddress | string | The first line of a formatted address - e.g., Street Number + Street |
| Name, P.O. Box, etc. | ||
| CityName | string | The city where the address is located. |
| StateProvinceCode | StateProvince | The region (depending on the country, this could be the state or |
| province) where the address is located. | ||
| PostalCode | string | The unique identifier used to associate postal deliveries. This may |
| also be referred to as zip code or post code where the address is located. | ||
| CountryCode | Country | The country where the address is located. |
| EmployeeEmail | string | A message distributed by electronic means from one computer user to one |
| or more recipients via a network. | ||
| EmploymentInformation | Object | EmploymentInformation Object |
| OriginalHireDate | date | First date the Employee was actively at work with their employer. |
| MostRecentHireDate | date | The latest date the Employee was hired. |
| EmploymentTypeCode | EmploymentType | Describes the Type of Employment for the employee (e.g. FT, PT, |
| Seasonal). | ||
| EmploymentStatusCode | EmploymentStatus | Identifies the state of the members employment (e.g. Active, |
| Terminated, Leave, Retiree). | ||
| TerminationDate | date | The last date of employment for an employee. |
| TerminationReasonCode | TerminationReason | Describes why the persons employment was terminated. |
| JobTitleText | string | The position held by an employee. |
| OccupationText | string | A job or profession. |
| WorkLocationText | string | Group/Department Location Name for Billing Purposes. |
| PayrollDeductionFrequencyQuantity | integer | Number of scheduled Deductions per year. |
| PayrollFrequencyQuantity | int | Number of scheduled Pay Periods per year. |
| EmploymentIncome | Object | EmploymentIncome Object |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| IncomeTypeCode | IncomeType | Describes the type of income - e.g., base salary, commission, bonus. |
| IncomeAmount | decimal | The actual dollar amount. |
| IncomeModeCode | ModeType | Frequency in which Income is received. |
| IncomeEffectiveDate | date | Date Employee started earning that the reflected salary. |
| EnrollmentInformation | Object | EnrollmentInformation Object |
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EnrollmentMethodCode | EnrollmentMethod | List of ways members enroll into the benefit. |
| Event | Object | Event Object |
| EventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EventTypeCode | EventType | It describes the things that are happening / taking place that are of |
| importance. | ||
| EventTypeReasonCode | EventTypeReason | A cause, explanation, or justification for an action or event. |
| EventDate | date | The date on which a specific occurrence took place. |
| TransactionDate | date | Date the employee enrolled and saved their elections in the enrollment |
| system. | ||
| EmployeeEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Producer | Object | Producer Object |
| ProducerPartyID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| ProducerFirstName | string | The given first name of a Producer (also known as Enroller, Agent, |
| Broker, etc.). | ||
| ProducerLastName | string | The surname of the Producer (also known as Enroller, Agent, Broker, |
| etc.). | ||
| Coverage | Object | Coverage Object |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| ProductTypeCode | ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitClassIdentifier | string | A categorization of employees mutually agreed upon between the |
| insurance carrier and the group with similar employment information that are all offered | ||
| the same insurance plan configuration. | ||
| BillGroupIdentifier | string | Carrier assigned code to tie the coverage back to a billing |
| arrangement. | ||
| CoverageEffectiveDate | date | Date of the latest change to the current active Coverage. May reflect |
| initial coverage or coverage changes such as those impacting ElectedCoverage, | ||
| BenefitPlanIdentifier, CoverageTierCode, BenefitAmount, EmployeePremiumContributionAmount, | ||
| EmployerPremiumContributionAmount, etc. | ||
| CoverageTerminationDate | date | The last date that the coverage is in effect. |
| CoverageTierCode | CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Employee | Object | Employee Object |
| BenefitCalculationMethodCode | BenefitCalculationMethod | Describes how the value of coverage is calculated; percentage of |
| earnings, increments, or flat/incremental amount. | ||
| BenefitAmount | decimal | Value of rider that has been approved based on the defined plan rules |
| for the enrolling person. | ||
| EmployeeContributionCode | EmployeeContribution | Indicates the employee contribution towards the product coverage |
| premium. | ||
| EmployeePremiumContributionAmount | decimal | The amount of rider premium contribution from the employee. |
| EmployerPremiumContributionAmount | decimal | The amount of rider premium contribution from the employer. |
| TotalPlanPremiumAmount | decimal | The total premium paid by both the employer and employee. |
| PremiumModeQuantity | integer | The frequency of premium and contribution payment by a Employee or |
| Employee. | ||
| PreTaxCode | PreTax | Indicates whether employee product premium is pre-tax or post-tax, |
| based on IRS guidelines. | ||
| CarrierID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageInsured | Object | CoverageInsured Object |
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered under | ||
| the benefit plan. | ||
| InsuredCoverageTerminationDate | date | The last date that the coverage is in effect for a given insured. |
| CoverageEventID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageCommissionSplit | CoverageCompensationSplit | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| CarrierProducerNumberID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CompensationSplitPercent | decimal | The premium percentages that are retained and allocated to producers in |
| the form of commission. | ||
| EnrollmentInformationID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| CoverageContribution | Object | CoverageContribution Object |
| ContributionLimitTypeCode | ContributionLimitType | The contribution limits used to determine maximum limit. |
| PlanYearEmployeeContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employee. Note that in some instances a plan year may be less or more than 12 months. | ||
| PlanYearEmployerContributionAmount | decimal | Total amount expected to be contributed during a plan year by the |
| Employer. Note that in some instances a plan year may be less or more than 12 months. | ||
| ToDateEmployeeContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employee. | ||
| ToDateEmployerContributionAmount | decimal | The dollar amount to date at time of the transmission contributed to |
| the saving or spending account by the Employer. | ||
| ContributionsRemainingQuantity | int | The number of contributions still to be made. |
| Audit | Object | Audit Object |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| CarrierRecordQuantity | int | A count of Carrier records included in the electronic transmission. |
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic transmission. |
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
EvidenceOfInsurabilityStatus
title: LDExEOIS REST API
Introduction
Simple API for exchanging LDExEOIS payloads. The API describes transmission of an LDExEOIS payload in two parts: 1) Metadata describing the payload (unique ID, sender, receiver, payload type, and spec version) and 2) payload in the LDExEOIS format (JSON or XML).
Evidence of Insurability (EOI) API facilitate EOI form submission for Group insurance products for partners, and provide status of the submitted EOI transaction using transaction ID. Version: 1.0.2022.01.01
POST /eoi
Description: Process evidence of insurability status and decision sent in LDExEOI payload
HTTP Request
POST /eoi Parameters
| Name | Located in | Description | Required | Type |
|---|---|---|---|---|
| eoi Metadata | formData | Meta data describing LDExEOIS payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver. Must conform to definition of definitions/eoisMetadata. | Yes | string (json) |
| eoi Payload | formData | The LDExEOIS payload (XML or JSON) | Yes | binary |
Responses
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request - Payload rejected. |
| 401 | Unauthorized - action requires user authentication. |
| 403 | Forbidden - user does not have permission to upload this payload. |
| 404 | Not Found - resource not found. |
| 405 | Not Allowed - method not allowed on this resource. |
| 406 | Unacceptable - payload content type is not supported. |
| 411 | Length Required - server needs to know the size of the entity body. Specify in Content-Length header. |
| 413 | Payload too large - payload exceeds size limit (too many employees or too many employers). |
| 415 | Unsupported media type - payload type unsupported. |
| 422 | Unprocessable entity - request body failed business validation. |
| 429 | Too many requests - number of requests exceeds limit |
| 500 | Internal Server Error - fatal error during processing of request |
| 501 | Not implemented - EIOS upload is not supported |
| 502 | Bad Gateway - the server received an invalid response from an upstream server. |
| 503 | Service Unavailable - unable to process request at this time. Try again later. |
Evidence of Insurability Decision (Carrier-initiated)
Evidence of Insurability Decision (Carrier) - EOI full approval
Description Communicate an Underwritten Decision of Approved for the full coverage amount requested. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "9cbd7bb6-9132-11ea-bb37-0242ac130002",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2020-05-08T10:05:42",
"TransactionDetail": {
"EmployerPartyID": "ER1520",
"EmployeePartyID": "EE987650",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnknownCoverageOrApplicant",
"MessageText": "Not Started - No Record Found as Carrier has no knowledge of the enrolled\n\t\t\t\tcoverage identified in the request"
}
},
"Audit": {
"AuditID": "A4567890",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
Evidence of Insurability Decision (Carrier) - EOI partial approval
Description Communicate an Underwritten Decision of 'Approved' for a partial coverage amount requested. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitAmount": "50000",
"ElectedCoverage": {
"ElectedBenefitAmount": "150000",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTLSP",
"BenefitAmount": "20000",
"ElectedCoverage": {
"ElectedBenefitAmount": "100000",
"ElectedCoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "3",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "VSTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.65",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "4",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "VLTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.60",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "5",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_7",
"IndividualPolicyNumber": null,
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI",
"CoverageTierCode": "EmployeeSpouse",
"BenefitAmount": "10000",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitAmount": "20000",
"ElectedCoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
]
},
"CoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
],
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "5",
"UnderwritingStatusRecordQuantity": "5"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedCoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Situational, required for Tier-based coverages else not required. When CoverageTierCode | ||
| is used, CoverageInsured(s) are optional. However, when CoverageInsured(s) are included, | ||
| the following rules apply: CoverageInsured for the Employee is not valid for | ||
| CoverageTierCode values of SpouseOnly, ChildOnly, SpouseDependent, SpouseChildren. | ||
| Employee must be included for all other tiers. CoverageInsured for a Spouse or Partner | ||
| is not valid for CoverageTierCode values of Employee, EmployeeChildren and ChildOnly. | ||
| CoverageInsured for Spouse/Partner is required for EmployeeSpouse, SpouseOnly, | ||
| SpouseDependent and SpouseChildren tiers. CoverageInsured for Spouse/Partner is optional | ||
| for the remaining tier values. CoverageInsured for non-spouse/non-partner dependents is | ||
| not valid for Employee, EmployeeSpouse and SpouseOnly tiers, and is optional for all | ||
| other tiers. Note that the valid, eligible relationship values for any given tier in a | ||
| benefit will be defined by the Carrier. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Decision (Carrier) - EOI Decline
Description
Communicate an Underwritten Decision of 'Declined' for a coverage amount requested. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": "1",
"ElectedCoverage": {
"ElectedBenefitFactor": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Declined",
"TotalBenefitFactor": "1",
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_7",
"IndividualPolicyNumber": null,
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI",
"CoverageTierCode": "EmployeeSpouse",
"BenefitAmount": "0",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitAmount": "20000",
"ElectedCoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
]
},
"CoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
],
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Declined",
"TotalBenefitAmount": "0",
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "2",
"UnderwritingStatusRecordQuantity": "2"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| TotalBenefitFactor | decimal | The total benefit multiple or percentage factor that the carrier has |
| currently approved for the insured. This is not just the factor that was underwritten, | ||
| but the entire approved factor. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedCoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Situational, required for Tier-based coverages else not required. When CoverageTierCode | ||
| is used, CoverageInsured(s) are optional. However, when CoverageInsured(s) are included, | ||
| the following rules apply: CoverageInsured for the Employee is not valid for | ||
| CoverageTierCode values of SpouseOnly, ChildOnly, SpouseDependent, SpouseChildren. | ||
| Employee must be included for all other tiers. CoverageInsured for a Spouse or Partner | ||
| is not valid for CoverageTierCode values of Employee, EmployeeChildren and ChildOnly. | ||
| CoverageInsured for Spouse/Partner is required for EmployeeSpouse, SpouseOnly, | ||
| SpouseDependent and SpouseChildren tiers. CoverageInsured for Spouse/Partner is optional | ||
| for the remaining tier values. CoverageInsured for non-spouse/non-partner dependents is | ||
| not valid for Employee, EmployeeSpouse and SpouseOnly tiers, and is optional for all | ||
| other tiers. Note that the valid, eligible relationship values for any given tier in a | ||
| benefit will be defined by the Carrier. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| TotalBenefitAmount | decimal | The total inforce amount that the carrier has currently approved for |
| the insured. This is not just the dollar amount that was underwritten, but the entire | ||
| approved amount. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Decision (Carrier) - EOI Closed
Description
Communicate an Underwritten Decision of Closed with an Underwritten Decision Reason of either Closed by carrier or Closed by withdrawal. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"Transmission": {
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": 10021,
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": 90001,
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": "",
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": "",
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": 80001,
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": "",
"DependentName": {
"FirstName": "Sue",
"MiddleName": "",
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": 1,
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": "",
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": 1,
"ElectedCoverage": {
"ElectedBenefitFactor": 3,
"ElectedCoverageInsured": {
"InsuredPartyID": 90001,
"PrimaryInsuredIndicator": true,
"TobaccoUseIndicator": false,
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": 90001,
"PrimaryInsuredIndicator": true,
"TobaccoUseIndicator": false,
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Closed",
"UnderwritingDecisionReasonCode": "ClosedByCarrier",
"TotalBenefitFactor": 1,
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": 2,
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_7",
"IndividualPolicyNumber": "",
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI",
"CoverageTierCode": "EmployeeSpouse",
"BenefitAmount": 0,
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitAmount": 20000,
"ElectedCoverageInsured": [
{
"InsuredPartyID": 90001,
"PrimaryInsuredIndicator": true,
"TobaccoUseIndicator": false,
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": 80001,
"PrimaryInsuredIndicator": false,
"TobaccoUseIndicator": false,
"InsuredCoverageEffectiveDate": "2020-05-01"
}
]
},
"CoverageInsured": {
"InsuredPartyID": 90001,
"PrimaryInsuredIndicator": true,
"TobaccoUseIndicator": false,
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Closed",
"UnderwritingDecisionReasonCode": "ClosedByCarrier",
"TotalBenefitAmount": 0,
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": "",
"EmployerRecordQuantity": 1,
"EmployeeRecordQuantity": 1,
"DependentRecordQuantity": 1,
"CoverageRecordQuantity": 2,
"UnderwritingStatusRecordQuantity": 2
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| Transmission | eois:Transmission | No documentation available |
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| UnderwritingDecisionReasonCode | eois:UnderwritingDecisionReason | Describes the reason behind the Carriers underwriting decision. |
| TotalBenefitFactor | decimal | The total benefit multiple or percentage factor that the carrier has |
| currently approved for the insured. This is not just the factor that was underwritten, | ||
| but the entire approved factor. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedCoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Situational, required for Tier-based coverages else not required. When CoverageTierCode | ||
| is used, CoverageInsured(s) are optional. However, when CoverageInsured(s) are included, | ||
| the following rules apply: CoverageInsured for the Employee is not valid for | ||
| CoverageTierCode values of SpouseOnly, ChildOnly, SpouseDependent, SpouseChildren. | ||
| Employee must be included for all other tiers. CoverageInsured for a Spouse or Partner | ||
| is not valid for CoverageTierCode values of Employee, EmployeeChildren and ChildOnly. | ||
| CoverageInsured for Spouse/Partner is required for EmployeeSpouse, SpouseOnly, | ||
| SpouseDependent and SpouseChildren tiers. CoverageInsured for Spouse/Partner is optional | ||
| for the remaining tier values. CoverageInsured for non-spouse/non-partner dependents is | ||
| not valid for Employee, EmployeeSpouse and SpouseOnly tiers, and is optional for all | ||
| other tiers. Note that the valid, eligible relationship values for any given tier in a | ||
| benefit will be defined by the Carrier. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| UnderwritingDecisionReasonCode | eois:UnderwritingDecisionReason | Describes the reason behind the Carriers underwriting decision. |
| TotalBenefitAmount | decimal | The total inforce amount that the carrier has currently approved for |
| the insured. This is not just the dollar amount that was underwritten, but the entire | ||
| approved amount. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Application Status Push to Ben Admin
Evidence of Insurability Push Update- Not Started on file
Description
Communicate an Underwritten Status of Not Started. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitAmount": "50000",
"ElectedCoverage": {
"ElectedBenefitAmount": "150000",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTLSP",
"BenefitAmount": "20000",
"ElectedCoverage": {
"ElectedBenefitAmount": "100000",
"ElectedCoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "3",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "VSTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.65",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "4",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "VLTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.60",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "5",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_7",
"IndividualPolicyNumber": null,
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI",
"CoverageTierCode": "EmployeeSpouse",
"BenefitAmount": "10000",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitAmount": "20000",
"ElectedCoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
]
},
"CoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
],
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "5",
"UnderwritingStatusRecordQuantity": "5"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedCoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Situational, required for Tier-based coverages else not required. When CoverageTierCode | ||
| is used, CoverageInsured(s) are optional. However, when CoverageInsured(s) are included, | ||
| the following rules apply: CoverageInsured for the Employee is not valid for | ||
| CoverageTierCode values of SpouseOnly, ChildOnly, SpouseDependent, SpouseChildren. | ||
| Employee must be included for all other tiers. CoverageInsured for a Spouse or Partner | ||
| is not valid for CoverageTierCode values of Employee, EmployeeChildren and ChildOnly. | ||
| CoverageInsured for Spouse/Partner is required for EmployeeSpouse, SpouseOnly, | ||
| SpouseDependent and SpouseChildren tiers. CoverageInsured for Spouse/Partner is optional | ||
| for the remaining tier values. CoverageInsured for non-spouse/non-partner dependents is | ||
| not valid for Employee, EmployeeSpouse and SpouseOnly tiers, and is optional for all | ||
| other tiers. Note that the valid, eligible relationship values for any given tier in a | ||
| benefit will be defined by the Carrier. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Push Update- Not Submitted
Description
Communicate an Underwritten Status of Not Submitted. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitAmount": "150000",
"ElectedCoverage": {
"ElectedBenefitAmount": "550000",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotSubmitted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTLSP",
"BenefitAmount": "75000",
"ElectedCoverage": {
"ElectedBenefitAmount": "220000",
"ElectedCoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotSubmitted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "2",
"UnderwritingStatusRecordQuantity": "2"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Push Update - Pending
Description
Communicate an Underwritten Status of Pending, with an EOI Status Reason of either "Carrier is Reviewing", "Incomplete Submission", or "Waiting on Applicant Action". This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Coverage": {
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": "1",
"ElectedCoverage": {
"ElectedBenefitFactor": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Pending",
"ApplicationStatusReasonCode": "CarrierIsReviewing",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"UnderwritingStatusRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusReasonCode | eois:ApplicationStatusReason | Describes the why behind the ApplicationStatusCode, which may be used |
| by the Technology Partner to further describe to the member a more granular definition | ||
| of where their EOI application is at in the process. | ||
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Push Update - Completed
Description
Communicate an Underwritten Status of Completed with the appropriate Underwritten Decision also passed in that element. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Coverage": {
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": "1",
"ElectedCoverage": {
"ElectedBenefitFactor": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Approved",
"UnderwritingDecisionEffectiveDate": "2020-05-01",
"UnderwritingApprovedBenefitFactor": "2",
"TotalBenefitFactor": "3",
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"UnderwritingStatusRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| UnderwritingDecisionEffectiveDate | date | The effective date of the coverage based on the underwriting decision; |
| effective dates for approval decisions may be later than the effective date of the | ||
| guaranteed issue at enrollment. | ||
| UnderwritingApprovedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| TotalBenefitFactor | decimal | The total benefit multiple or percentage factor that the carrier has |
| currently approved for the insured. This is not just the factor that was underwritten, | ||
| but the entire approved factor. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability Application Status Request by Ben Admin
Evidence of Insurability Request - Not started no record
Description
Communicate an Underwritten Status of Not Started. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "9cbd7bb6-9132-11ea-bb37-0242ac130002",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2020-05-08T10:05:42",
"TransactionDetail": {
"EmployerPartyID": "ER1520",
"EmployeePartyID": "EE987650",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnknownCoverageOrApplicant",
"MessageText": "Not Started - No Record Found as Carrier has no knowledge of the enrolled\n\t\t\t\tcoverage identified in the request"
}
},
"Audit": {
"AuditID": "A4567890",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
Evidence of Insurability request - Not Started on file
Description
Communicate an Underwritten Status of Not Started. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitAmount": "50000",
"ElectedCoverage": {
"ElectedBenefitAmount": "150000",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTLSP",
"BenefitAmount": "20000",
"ElectedCoverage": {
"ElectedBenefitAmount": "100000",
"ElectedCoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "3",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "STD",
"BenefitPlanIdentifier": "VSTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.65",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "4",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "LTD",
"BenefitPlanIdentifier": "VLTD",
"BenefitFactor": "0.40",
"ElectedCoverage": {
"ElectedBenefitFactor": "0.60",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "5",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_7",
"IndividualPolicyNumber": null,
"ProductTypeCode": "CriticalIllness",
"BenefitPlanIdentifier": "CI",
"CoverageTierCode": "EmployeeSpouse",
"BenefitAmount": "10000",
"ElectedCoverage": {
"ElectedCoverageTierCode": "EmployeeSpouse",
"ElectedBenefitAmount": "20000",
"ElectedCoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
]
},
"CoverageInsured": [
{
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
{
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
],
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotStarted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "5",
"UnderwritingStatusRecordQuantity": "5"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| CoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedCoverageTierCode | eois:CoverageTier | Universal level of coverage being elected by the employee (including |
| dependents) or provided by the group based on the selected benefit plan type. | ||
| Situational, required for Tier-based coverages else not required. When CoverageTierCode | ||
| is used, CoverageInsured(s) are optional. However, when CoverageInsured(s) are included, | ||
| the following rules apply: CoverageInsured for the Employee is not valid for | ||
| CoverageTierCode values of SpouseOnly, ChildOnly, SpouseDependent, SpouseChildren. | ||
| Employee must be included for all other tiers. CoverageInsured for a Spouse or Partner | ||
| is not valid for CoverageTierCode values of Employee, EmployeeChildren and ChildOnly. | ||
| CoverageInsured for Spouse/Partner is required for EmployeeSpouse, SpouseOnly, | ||
| SpouseDependent and SpouseChildren tiers. CoverageInsured for Spouse/Partner is optional | ||
| for the remaining tier values. CoverageInsured for non-spouse/non-partner dependents is | ||
| not valid for Employee, EmployeeSpouse and SpouseOnly tiers, and is optional for all | ||
| other tiers. Note that the valid, eligible relationship values for any given tier in a | ||
| benefit will be defined by the Carrier. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability request - Not Submitted
Description
Communicate an Underwritten Status of Not Submitted. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Dependent": {
"DependentPartyID": "80001",
"DependentSocialSecurityNumber": "123-45-6788",
"DependentIdentifier": null,
"DependentName": {
"FirstName": "Sue",
"MiddleName": null,
"LastName": "Ross"
},
"DependentRelationshipTypeCode": "Spouse"
},
"Coverage": [
{
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitAmount": "150000",
"ElectedCoverage": {
"ElectedBenefitAmount": "550000",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotSubmitted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
},
{
"CoverageID": "2",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTLSP",
"BenefitAmount": "75000",
"ElectedCoverage": {
"ElectedBenefitAmount": "220000",
"ElectedCoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "80001",
"PrimaryInsuredIndicator": "false",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "NotSubmitted",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
]
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "1",
"CoverageRecordQuantity": "2",
"UnderwritingStatusRecordQuantity": "2"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Dependent | eois:Dependent | Person who relies on another, especially a family member, for financial |
| support. | ||
| DependentPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| DependentSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| DependentName | eois:StructuredPersonName | This is a representation of the person entitys name. |
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| DependentRelationshipTypeCode | eois:DependentRelationshipType | Relationship of the dependent to the employee. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitAmount | decimal | Value of approved coverage, based on the defined plan rules for the |
| enrolling person. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitAmount | decimal | Value of the coverage being asked for (aka elected) based on the |
| defined plan rules for the enrolling person. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability request - Pending
Description
Communicate an Underwritten Status of 'Pending', with an EOI Status Reason of either "Carrier is Reviewing", "Incomplete Submission", or "Waiting on Applicant Action". This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
Parameters
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Coverage": {
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": "1",
"ElectedCoverage": {
"ElectedBenefitFactor": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Pending",
"ApplicationStatusReasonCode": "CarrierIsReviewing",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"UnderwritingStatusRecordQuantity": "1"
}
}
}
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Sender's system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entity's name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entity's name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The person's name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a person's name arising from family identifications. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carrier's underwriter. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusReasonCode | eois:ApplicationStatusReason | Describes the why behind the ApplicationStatusCode, which may be used |
| by the Technology Partner to further describe to the member a more granular definition | ||
| of where their EOI application is at in the process. | ||
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Evidence of Insurability request - Completed
Description
Communicate an Underwritten Status of Completed with the appropriate Underwritten Decision also passed in that element. This could apply to any type of coverage that would pend for EOI, including (but not limited to): Life, Disability, and Critical Illness insurance for members and/or dependents.
{
"eois:Transmission": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:eois": "https://ldex.limra.com/xsd/1.0/LDExEOIS",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExEOIS_1.0.2022.01.01.xsd",
"TransmissionGUID": "18ff0807-d121-41b9-9494-e0c7da701225",
"SenderName": "Carrier A",
"SenderPlatformName": "Carrier Platform C",
"ReceiverName": "Benefit Administrator B",
"CreationDateTime": "2020-04-01T21:49:45",
"TestProductionCode": "Test",
"TransmissionTypeCode": "ChangesOnly",
"SchemaVersionIdentifier": "1.0.2022.01.01",
"Employer": {
"EmployerPartyID": "10021",
"MasterAgreementNumber": "GROUP1234",
"EmployerName": "Group Name 1234",
"Employee": {
"EmployeePartyID": "90001",
"EmployeeSocialSecurityNumber": "123-45-6789",
"EmployeeIdentifier": null,
"EmployeeName": {
"FirstName": "Bob",
"MiddleName": null,
"LastName": "Ross"
},
"Coverage": {
"CoverageID": "1",
"GroupPolicyNumber": "GROUP_POLICY_NUMBER_1",
"IndividualPolicyNumber": null,
"ProductTypeCode": "Life",
"BenefitPlanIdentifier": "VGTL",
"BenefitFactor": "1",
"ElectedCoverage": {
"ElectedBenefitFactor": "3",
"ElectedCoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
}
},
"CoverageInsured": {
"InsuredPartyID": "90001",
"PrimaryInsuredIndicator": "true",
"TobaccoUseIndicator": "false",
"InsuredCoverageEffectiveDate": "2020-05-01"
},
"UnderwritingStatus": {
"UnderwritingDecisionCode": "Approved",
"UnderwritingDecisionEffectiveDate": "2020-05-01",
"UnderwritingApprovedBenefitFactor": "2",
"TotalBenefitFactor": "3",
"EvidenceChannelCode": "Web",
"ApplicationStatusCode": "Completed",
"ApplicationStatusDateTime": "2020-03-29T09:49:45"
}
}
}
},
"Audit": {
"AuditID": null,
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"DependentRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"UnderwritingStatusRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| SenderName | string | Name of the company sending electronic benefit records on behalf of a |
| group. | ||
| SenderPlatformName | string | Identifies the Senders system that is providing the data for this data |
| set. | ||
| ReceiverName | string | Name of the company receiving electronic benefit records on behalf of a |
| group. | ||
| CreationDateTime | dateTime | UTC date and time the transmission was created. |
| TestProductionCode | eois:TestProduction | Indicates the elements contained in this data set are production or |
| test data. | ||
| TransmissionTypeCode | eois:TransmissionType | The type of data contained within the data set. |
| SchemaVersionIdentifier | eois:SchemaVersionNumber | Identifies the version of the standard that is being adhered to in this |
| data set. | ||
| Employer | eois:Employer | An entity that employees people or is organized for a joint purpose. |
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| MasterAgreementNumber | string | Carrier assigned group number. All individual policies or certificates |
| at the group level would roll up to this master group number. This may be the same as | ||
| the agreement (aka policy) number for some carriers. | ||
| EmployerName | string | This is a representation of the organizational entitys name. |
| Employee | eois:Employee | An individual who works part-time or full-time under a contract of |
| employment, whether oral or written, express or implied, and has recognized rights and | ||
| duties. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeeSocialSecurityNumber | string | A numerical identifier assigned to U.S.citizens and some residents to |
| track their income. | ||
| EmployeeIdentifier | string | Employer or Plan Sponsor Issued Identifier. |
| EmployeeName | eois:StructuredPersonName | This is a representation of the person entitys name. MiddleName - |
| Optional - can be just a middle initial. | ||
| FirstName | string | The persons name normally preceding the last name and typically used |
| to refer to the person in both formal and/or informal circumstances. | ||
| MiddleName | string | The additional names given to a person, usually at birth, and which |
| appear sequentially between the first name and last name. | ||
| LastName | string | The part of a persons name arising from family identifications. |
| Coverage | eois:Coverage | A risk or service based benefit associated with a categorization of |
| employees / members. | ||
| CoverageID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| GroupPolicyNumber | string | Carrier assigned number for the group policy / agreement for which the |
| coverage may be associated. | ||
| IndividualPolicyNumber | string | Carrier specific identifier indicating the benefit/product elected by |
| the member (this could be associated to one benefit or many) | ||
| ProductTypeCode | eois:ProductType | Universal identifier for a specific logical product group that may be |
| elected by a member. | ||
| BenefitPlanIdentifier | string | Carrier specific identifier used to denote the plan being elected by |
| the member based on the product being purchased. | ||
| BenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| ElectedCoverage | eois:ElectedCoverage | The risk elected for a person by way of insurance products and |
| coverages. | ||
| ElectedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| elected), when the benefit is not a flat dollar amount. | ||
| ElectedCoverageInsured | eois:CoverageInsured | The insured person associated with their respective elected benefit |
| plans, for example an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| CoverageInsured | eois:CoverageInsured | Associates a given Insured to their respective coverages, for example |
| an Employee or a Dependent. | ||
| InsuredPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| PrimaryInsuredIndicator | boolean | A flag that indicates whether the Insured associated with the Benefit |
| Plan is the primary insured. | ||
| TobaccoUseIndicator | boolean | Denotes if the Employee and/or Spouse is a tobacco user. |
| InsuredCoverageEffectiveDate | date | Earliest date of continuous coverage for this insured in the associated |
| benefit plan. Separate benefit effective dates must be sent for each dependent covered | ||
| under the benefit plan. | ||
| UnderwritingStatus | eois:UnderwritingStatus | Represents the state of the evidence of insurability application and |
| subsequent decision made by the carriers underwriter. | ||
| UnderwritingDecisionCode | eois:UnderwritingDecision | Indicates the underwriting decision made by the carrier after reviewing |
| the evidence of insurability (EOI) and application. | ||
| UnderwritingDecisionEffectiveDate | date | The effective date of the coverage based on the underwriting decision; |
| effective dates for approval decisions may be later than the effective date of the | ||
| guaranteed issue at enrollment. | ||
| UnderwritingApprovedBenefitFactor | decimal | The benefit multiple or percentage factor for the defined type (e.g., |
| approved), when the benefit is not a flat dollar amount. | ||
| TotalBenefitFactor | decimal | The total benefit multiple or percentage factor that the carrier has |
| currently approved for the insured. This is not just the factor that was underwritten, | ||
| but the entire approved factor. | ||
| EvidenceChannelCode | eois:EvidenceChannel | The medium for initial questions and answers requested by the Carrier. |
| Requirement: Optional | ||
| ApplicationStatusCode | eois:ApplicationStatus | Describes the status of the application with the Carrier. |
| ApplicationStatusDateTime | dateTime | Date and time the EOI Application status was set. |
| Audit | eois:Audit | No documentation available |
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| EmployeeRecordQuantity | int | A count of Employer records included in the electronic transmission. |
| DependentRecordQuantity | int | A count of Dependent records included in the electronic transmission. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic transmission. |
| UnderwritingStatusRecordQuantity | int | A count of UnderwritingDecision records included in the electronic |
| transmission. |
Response EOI
AuditInformation
Here is the example response Description
Response-AuditInformation.json
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": [
{
"EntityCode": "Audit",
"EntityReferenceID": "AuditID",
"FieldName": "EmployeeRecordQuantity",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidAuditQuantity",
"MessageText": "EmployeeRecordQuantity is not matching"
},
{
"EntityCode": "Audit",
"EntityReferenceID": "AuditID",
"FieldName": "CoverageRecordQuantity",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidAuditQuantity",
"MessageText": "CoverageRecordQuantity is not matching"
}
],
"Audit": {
"AuditID": "String",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "0",
"DependentRecordQuantity": "0",
"OtherPartyRecordQuantity": "0",
"BeneficiaryGroupRecordQuantity": "0",
"EventRecordQuantity": "0",
"CoverageRecordQuantity": "1",
"CoverageRiderRecordQuantity": "0"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| FieldName | string | Field Name is an actual element in the object. |
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| FieldName | string | Field Name is an actual element in the object. |
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| DependentRecordQuantity | int | A count of Dependent records included in the electronic |
| transmission. | ||
| OtherPartyRecordQuantity | int | A count of Other Party records included in the electronic |
| transmission. | ||
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| EventRecordQuantity | int | A count of Event records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. | ||
| CoverageRiderRecordQuantity | int | A count of Coverage Rider records included in the electronic |
| transmission. |
Description
InvalidSender
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": {
"EntityCode": "Transmission",
"EntityReferenceID": "T123456789",
"FieldName": "SenderName",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidSender",
"MessageText": "SenderName is Invalid"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevel
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": {
"EmployerPartyID": "1520",
"EmployeePartyID": "1772641",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"FieldName": "ProductTypeCode",
"RemarkStatusCode": "Error",
"MessageText": "ProductTypeCode is missing"
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelCoverageChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "942f0d58-4775-49a3-8ae2-6056e5e858c6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2019-05-10T12:00:00",
"TransactionDetail": {
"EmployerPartyID": "1520",
"EmployeePartyID": "1772641",
"TransactionRemark": {
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "EmploymentInformation",
"FieldName": "EmploymentStatusCode",
"RemarkStatusCode": "Error",
"MessageText": "Employee has been terminated and is no longer active. Unable to process coverage changes."
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelMultiRemarks
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": [
{
"EmployerPartyID": "1234",
"EmployeePartyID": "98456",
"TransactionRemark": [
{
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "98456",
"FieldName": "JobTitleText",
"RemarkStatusCode": "Warning",
"MessageText": "JobTitleText is missing"
},
{
"EntityCode": "Coverage",
"EntityReferenceID": "C987456",
"FieldName": "BenefitPlanIDentifier",
"RemarkStatusCode": "Error",
"MessageText": "BenefitPlanIdentifier is missing"
}
]
},
{
"EmployerPartyID": "1234",
"EmployeePartyID": "99200",
"TransactionRemark": [
{
"EntityCode": "EmploymentInformation",
"EntityReferenceID": "99200",
"FieldName": "JobTitleText",
"RemarkStatusCode": "Warning",
"MessageText": "JobTitleText is missing"
},
{
"EntityCode": "Coverage",
"EntityReferenceID": "C123456",
"FieldName": "BenefitPlanIDentifier",
"RemarkStatusCode": "Error",
"MessageText": "BenefitPlanIdentifier is missing"
}
]
}
]
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
MemberLevelSalaryChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "TransmissionGUID",
"TransmissionStatusCode": "Partial",
"CreationDateTime": "2001-12-31T12:00:00",
"TransactionDetail": {
"EmployerPartyID": null,
"EmployeePartyID": null,
"TransactionRemark": {
"EntityCode": "EmploymentIncome",
"EntityReferenceID": "EmployeePartyID",
"FieldName": "IncomeTypeCode",
"RemarkStatusCode": "Error",
"MessageTypeCode": "InvalidCode",
"MessageText": "IncomeTypeCode is unknown"
}
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| FieldName | string | Field Name is an actual element in the object. |
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example 'Warning' or 'Error'. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
SchemaValidation
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2001-12-31T12:00:00",
"TransmissionRemark": {
"EntityCode": "Transmission",
"EntityReferenceID": "99a2f078-10fc-45d0-60b99a6eafad",
"RemarkStatusCode": "Error",
"MessageTypeCode": "SchemaNotSupported",
"MessageText": "Schema version is not supported. Please resend using a compatible schema version."
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransmissionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. |
Description
TransmissionSuccess
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "e034ec87-abe4-4fad-ac8d-d2549e6232b6",
"TransmissionStatusCode": "Success",
"CreationDateTime": "2001-12-31T12:00:00"
}
}
Description
UnableToCancelOrTerminateCoverage
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV56980",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToCancelOrTerminateCoverage"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessBeneficiaryChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Beneficiary",
"EntityReferenceID": "BEN123",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessBeneficiaryChange"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"BeneficiaryGroupRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| BeneficiaryGroupRecordQuantity | int | A count of Beneficiary Group records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessCoverageDecrease
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessCoverageDecrease"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessCoverageIncrease
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV123456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessCoverageIncrease",
"MessageText": "Coverage increase exceeds plan limits"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToProcessDemographicChange
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Employee",
"EntityReferenceID": "EE987456",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToProcessDemographicChange"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |
Description
UnableToReinstateCoverage
{
"rsp:TransmissionResponse": {
"@xmlns:rsp": "https://ldex.limra.com/xsd/1.0/LDExRSP",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "https://ldex.limra.com/xsd/1.0/LDExRSP_1.3.2022.01.01.xsd",
"TransmissionGUID": "c3bbe592-3a44-4004-bdaf-82bb7f02d62f",
"TransmissionStatusCode": "Failure",
"CreationDateTime": "2022-03-29T15:12:14Z",
"TransactionDetail": {
"EmployerPartyID": "ER123456",
"EmployeePartyID": "EE987456",
"TransactionRemark": {
"EntityCode": "Coverage",
"EntityReferenceID": "COV89756",
"RemarkStatusCode": "Error",
"MessageTypeCode": "UnableToReinstateCoverage",
"MessageText": "Coverage cannot be reinstated without more details"
}
},
"Audit": {
"AuditID": "A1234569",
"EmployerRecordQuantity": "1",
"EmployeeRecordQuantity": "1",
"CoverageRecordQuantity": "1"
}
}
}
Parameters
| Name | Type | Description |
|---|---|---|
| TransmissionGUID | string | Global Unique identifier created by the originator for this instance of |
| the electronic transmission. | ||
| TransmissionStatusCode | rsp:TransmissionStatus | Result associated with the entity. Result may say "Success" or |
| "Failure", or "Partial". | ||
| CreationDateTime | dateTime | UTC date and time the response was created. |
| TransactionDetail | rsp:TransactionDetail | Container for success or error messages associated with processing the |
| entity. | ||
| EmployerPartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| EmployeePartyID | string | An unique identifier for each instance of an object established within |
| the context of a given transaction. | ||
| TransactionRemark | rsp:Remark | There may be multiple result details, each indicating information about |
| processing a specific entity. | ||
| EntityCode | rsp:Entity | Entity enumeration is to identify the object in a record. |
| EntityReferenceID | string | A unique identifier generated by the requestor of the service for each |
| object in the record. | ||
| RemarkStatusCode | rsp:InformationCategory | A category describing the remark. For example Warning or Error. |
| MessageTypeCode | rsp:BusinessErrorCategory | Entity enumeration is to identify the Business Error categories. |
| MessageText | string | A message indicating what happened, or conveying information about the |
| remark. For example, provider warning or error messages. | ||
| Audit | rsp:Audit | An instance of auditable information provided to ensure accuracy and |
| consistency of the exchanged information. | ||
| AuditID | string | Unique identifier created by the originator for this instance of the |
| electronic transmission. | ||
| EmployerRecordQuantity | int | A count of Employer records included in the electronic |
| transmission. | ||
| EmployeeRecordQuantity | int | A count of Employee records included in the electronic |
| transmission. | ||
| CoverageRecordQuantity | int | A count of Coverage records included in the electronic |
| transmission. |